mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 01:02:30 +01:00
Merge pull request #261 from DetachHead/master
remove async modifier which is no longer allowed in interfaces
This commit is contained in:
commit
8d405c1013
1 changed files with 1 additions and 1 deletions
|
@ -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>;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue