UNPKG

axiodb

Version:

The Pure JavaScript Alternative to SQLite. Embedded NoSQL database for Node.js with MongoDB-style queries, zero native dependencies, built-in InMemoryCache, and web GUI. Perfect for desktop apps, CLI tools, and embedded systems. No compilation, no platfor

20 lines (19 loc) 461 B
export interface CollectionMap { isCryptoEnabled: boolean; cryptoKey?: string; path: string; } export interface DatabaseMap { DatabaseName: string; path: string; } export interface FinalCollectionsInfo { CurrentPath: string; RootName: string; MatrixUnits: string; TotalSize: number; TotalCollections: number | string; ListOfCollections: string[]; collectionMetaStatus: any[]; AllCollectionsPaths: string[]; }