UNPKG

axiodb

Version:

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

27 lines (26 loc) 565 B
export declare enum ServerKeys { PORT = 27018, LOCALHOST = "127.0.1" } export declare const CORS_CONFIG: { ORIGIN: string; METHODS: string[]; ALLOWED_HEADERS: string[]; EXPOSED_HEADERS: string[]; MAX_AGE: number; ALLOW_CREDENTIALS: boolean; }; export declare const staticPath: string; export declare const AvailableRoutes: ({ method: string; path: string; description: string; payload?: undefined; } | { method: string; path: string; description: string; payload: { name: string; }; })[];