UNPKG

svelte-multiselect

Version:
10 lines (9 loc) 286 B
export interface HastNode { type: string; value?: string; tagName?: string; properties?: Record<string, unknown>; children?: HastNode[]; } export declare const escape_html_text: (str: string) => string; export declare const hast_to_html: (node: HastNode) => string;