File: html_re.d.ts

package info (click to toggle)
node-markdown-it 22.2.3%2Bdfsg%2B~12.2.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,816 kB
  • sloc: javascript: 6,872; makefile: 226
file content (8 lines) | stat: -rwxr-xr-x 131 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
interface HtmlRE {
    HTML_TAG_RE: RegExp;
    HTML_OPEN_CLOSE_TAG_RE: RegExp;
}

declare const htmlRE: HtmlRE;

export = htmlRE;