import type Database from "better-sqlite3"; /** * Resolve a migrations directory that sits next to this module in both the * source tree (`src/db/`) and the bundle (`dist/`, populated by the * build's copy step). */ export declare function resolveMigrationsDir(name?: string): string; export interface SqliteMigrationRunResult { applied: string[]; skipped: string[]; } export declare function runSqliteMigrations(db: Database.Database, migrationsDir?: string): SqliteMigrationRunResult; //# sourceMappingURL=sqlite-migrate.d.ts.map