html.d.ts 109 B

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