UNPKG

netscape-bookmark-export-converter

Version:

Converts Netscape Bookmark Format files used by popular web browsers to an array of objects containing individual bookmarks URI's and their respective folder tags.

12 lines (11 loc) 270 B
/** * Converts Netscape Bookmark export file to an array of URIs and Tags * * @function * @public * @param fileName * @returns */ declare const convert: (fileName: string) => Promise<import("./interfaces").Bookmark[]>; export { convert }; export default convert;