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.

5 lines 254 B
export type Parser = (html: string, contextLocalName?: string) => string; export declare let parse: Parser; export declare let parseFrag: Parser; export declare function register(func: Parser, fragFunc: Parser): void; //# sourceMappingURL=parser.d.ts.map