We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e71b5c3 commit 8b5d3afCopy full SHA for 8b5d3af
packages/orb-sync-lib/src/database/postgres.ts
@@ -72,7 +72,7 @@ export class PostgresClient {
72
;`;
73
};
74
75
- async select<T>(sqlQuery: string, params?: Record<string, any>): Promise<T[]> {
+ async select<T>(sqlQuery: string, params?: Record<string, unknown>): Promise<T[]> {
76
const prepared = sql(sqlQuery, { useNullForMissing: true })(params || {});
77
const result = await this.pool.query(prepared.text, prepared.values);
78
0 commit comments