mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2026-01-02 22:59:10 +03:00
8 lines
197 B
TypeScript
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";
|