UNPKG

html5parser

Version:
16 lines (14 loc) 480 B
/*! * * Copyright 2017 - acrazing * * @author acrazing joking.young@gmail.com * @since 2017-08-19 01:09:54 * @version 1.0.0 * @desc index.ts */ export { SyntaxKind, IBaseNode, IAttributeValue, IAttribute, ITag, IText, INode } from './types'; export { TokenKind, IToken, tokenize } from './tokenize'; export { ParseOptions, parse } from './parse'; export { WalkOptions, walk } from './walk'; export { SafeHtmlOptions, safeHtmlDefaultOptions, safeHtml } from './safeHtml';