UNPKG

donobu

Version:

Create browser automations with an LLM agent and replay them as Playwright scripts.

13 lines 654 B
import type Database from 'better-sqlite3'; import type { GptConfigInput } from '../../models/GptConfig'; import type { GptConfigsPersistence } from './GptConfigsPersistence'; export declare class GptConfigsPersistenceSqlite implements GptConfigsPersistence { private readonly db; private constructor(); static create(db: Database.Database): Promise<GptConfigsPersistenceSqlite>; set(name: string, config: GptConfigInput): Promise<void>; get(name: string): Promise<GptConfigInput>; getAll(): Promise<Map<string, GptConfigInput>>; delete(name: string): Promise<void>; } //# sourceMappingURL=GptConfigsPersistenceSqlite.d.ts.map