We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05fc61e commit 63d65f6Copy full SHA for 63d65f6
index.d.ts
@@ -90,15 +90,15 @@ declare namespace serverlessMysql {
90
}
91
92
class Transaction {
93
- query(...args): this
+ query(...args: any[]): this
94
rollback(fn: Function): this
95
commit<T = any>(): Promise<T[]>
96
97
98
export type ServerlessMysql = {
99
connect(wait?: number): Promise<void>
100
config(config?: string | MySQL.ConnectionConfig): MySQL.ConnectionConfig
101
- query<T>(...args): Promise<T>
+ query<T>(...args: any[]): Promise<T>
102
end(): Promise<void>
103
escape: MySQL.EscapeFunctions['escape'],
104
escapeId: MySQL.EscapeFunctions['escapeId'],
0 commit comments