donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
12 lines • 488 B
TypeScript
import Database from 'better-sqlite3';
/**
* Returns the singleton SQLite database instance.
* Creates the database on first call and initializes it with proper settings.
*/
declare function getDonobuSqliteDatabase(): Database.Database;
/**
* Closes the database connection. Should be called during application shutdown.
*/
declare function closeDonobuSqliteDatabase(): void;
export { getDonobuSqliteDatabase, closeDonobuSqliteDatabase };
//# sourceMappingURL=DonobuSqliteDb.d.ts.map