export interface IDatabase { async init(): Promise; prepare(type: QueryType, query: string, params?: any[]): Promise; } export type QueryType = 'get' | 'all' | 'run';