UNPKG

jsonion

Version:

A lightweight JSON file-based database with nested data access and manipulation capabilities.

15 lines 506 B
import { db } from "./db.js"; import { manager } from "./manager.js"; import { JSONionError } from "./types.js"; import "./DeepAccess.js"; export { manager as Manager } from "./manager.js"; export { db as JSONion } from "./db.js"; export { JSONionError } from "./types.js"; export { manager, db, JSONionError as dbError }; declare const JSONionDB: { Manager: typeof manager; JSONion: typeof db; JSONionError: typeof JSONionError; }; export default JSONionDB; //# sourceMappingURL=index.d.ts.map