UNPKG

axiodb

Version:

A blazing-fast, lightweight, and scalable nodejs package based DBMS for modern application. Supports schemas, encryption, and advanced query capabilities.

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; }