(sql: string)
| 128 | } |
| 129 | |
| 130 | async function query<T>(sql: string): Promise<T[]> { |
| 131 | return ch |
| 132 | .query({ query: sql, format: 'JSONEachRow' }) |
| 133 | .then((res) => res.json<T>()); |
| 134 | } |
| 135 | |
| 136 | // --------------------------------------------------------------------------- |
| 137 | // Report |
no test coverage detected