| 25 | } |
| 26 | |
| 27 | export interface QueryFunction { |
| 28 | <T = any>(query: mysql.Query | string | mysql.QueryOptions): Bluebird<T>; |
| 29 | |
| 30 | <T = any>(options: string, values?: any): Bluebird<T>; |
| 31 | } |
| 32 | |
| 33 | export interface Query<T> extends mysql.Query { |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected