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