UNPKG

131 BTypeScriptView Raw
1interface HtmlRE {
2 HTML_TAG_RE: RegExp;
3 HTML_OPEN_CLOSE_TAG_RE: RegExp;
4}
5
6declare const htmlRE: HtmlRE;
7
8export = htmlRE;