UNPKG

netscape-bookmark-parser

Version:

A TypeScript/JavaScript library for parsing browser bookmark files (HTML format) and manipulating them as structured data. Compatible with both Deno and Node.js runtimes.

14 lines 376 B
/** * @param {string} html * @returns {string} */ export function parse(html: string): string; /** * @param {string} html * @param {string} context_local_name * @returns {string} */ export function parse_frag(html: string, context_local_name: string): string; export default init; declare function init(input: any): Promise<any>; //# sourceMappingURL=deno-wasm.d.ts.map