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.
6 lines • 323 B
TypeScript
import { HTMLDocument } from "./document.js";
export type DOMParserMimeType = "text/html" | "text/xml" | "application/xml" | "application/xhtml+xml" | "image/svg+xml";
export declare class DOMParser {
parseFromString(source: string, mimeType: DOMParserMimeType): HTMLDocument;
}
//# sourceMappingURL=dom-parser.d.ts.map