html.d.ts 109 B

123456
  1. declare const html: {
  2. parse(html: string): any[];
  3. stringify(tree: any[]): string;
  4. };
  5. export = html;