Files
SponsorBlockServer/src/databases/IDatabase.ts
2021-07-12 02:12:22 -04:00

8 lines
197 B
TypeScript

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