UNPKG

wx-to-tt

Version:

transform wx micro app to bytedance micro app

10 lines (9 loc) 274 B
import { TreeNode } from 'stricter-htmlparser2'; export interface RootNode { type: 'tag'; name: symbol; attribs: Record<string, string>; children: TreeNode[]; singleQuoteAttribs?: Record<string, any>; } export declare function parse(options?: {}): void;