/** * Arial Server - Database initialization and connection * * SQLite database for storing user authentication data */ import { Database } from "bun:sqlite"; /** * Initialize the database connection and create tables */ export declare function initDatabase(dbPath: string): Database; /** * Get the database connection * Throws if database hasn't been initialized */ export declare function getDatabase(): Database; /** * Close the database connection */ export declare function closeDatabase(): void; /** * Check if database is initialized */ export declare function isDatabaseInitialized(): boolean; //# sourceMappingURL=database.d.ts.map