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

17 lines (16 loc) 427 B
import { DatabaseMap } from "./database.operation.interface"; export interface AxioDBOptions { GUI?: boolean; RootName?: string; CustomPath?: string; TCP?: boolean; } export interface FinalDatabaseInfo { CurrentPath: string; RootName: string; TotalSize: number; TotalDatabases: string; ListOfDatabases: string[]; DatabaseMap: Map<string, DatabaseMap>; AllDatabasesPaths: string[]; }