import { Database } from "better-sqlite3"; import { DbInterface } from "./backend"; /** * @param db the SQLite3 connection * @param entryTableName name of the entries table * @param chainTableName name of the chains table * @returns the callbacks */ export declare function sqliteDbInterfaceExample(db: Database, entryTableName?: string, chainTableName?: string): Promise<{ entryInterface: DbInterface; chainInterface: DbInterface; }>; //# sourceMappingURL=sqlite.d.ts.map