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
commit 8d405c1013
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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