mysql - result structure

This commit is contained in:
Jan Prochazka
2020-02-02 19:34:04 +01:00
parent 6188e90340
commit c0b45a56d8
5 changed files with 6 additions and 9 deletions

6
types/engines.d.ts vendored
View File

@@ -10,12 +10,6 @@ export interface EngineDriver {
user,
password,
database
}: {
server: any;
port: any;
user: any;
password: any;
database: any;
}): any;
query(pool: any, sql: string): Promise<QueryResult>;
getVersion(pool: any): Promise<{ version: string }>;