nbff-parser
Version:
A simple parser for the Netscape Bookmark file format
17 lines (16 loc) • 435 B
TypeScript
export { merge } from './types/merge/merge.js'
export {
Bookmark,
Folder,
BookmarkWithId,
FolderWithId,
parse
} from './types/parse/parse.js'
export {
FlatBookmark,
FlatBookmarkWithId,
flatParse
} from './types/parse/flat-parse.js'
export { customParse } from './types/parse/custom-parse.js'
export { stringify } from './types/stringify/stringify.js'
export { flatStringify } from './types/stringify/flat-stringify.js'