import { SQLiteDBConnection } from '@capacitor-community/sqlite'; import { DbName } from '../../util/types.js'; type OriginalDatabase = SQLiteDBConnection; export interface Database extends Pick { dbname?: DbName; } export {};