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

12 lines (11 loc) 218 B
export interface SuccessInterface { statusCode: number; status: boolean; data?: any; } export interface ErrorInterface { statusCode: number; status: boolean; message?: string; data?: any; }