remove async modifier which is no longer allowed in interfaces

This commit is contained in:
DetachHead 2021-06-19 17:59:18 +10:00
parent 1770608525
commit 85a30369c4

View file

@ -1,5 +1,5 @@
export interface IDatabase {
async init(): Promise<void>;
init(): Promise<void>;
prepare(type: QueryType, query: string, params?: any[]): Promise<any | any[] | void>;
}