Merge pull request #261 from DetachHead/master

remove async modifier which is no longer allowed in interfaces
This commit is contained in:
Ajay Ramachandran
2021-06-20 13:05:17 -04:00
committed by GitHub

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>;
}