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.

11 lines (10 loc) 189 B
export interface JsonDataTreeObject { tagName?: string; attribs?: any; data?: string; children?: any[]; } export interface Bookmark { url: string; tags: string[]; }