From d005e0f1cf48249ae298a69f4405484ea1010095 Mon Sep 17 00:00:00 2001 From: Diego Imbert Date: Thu, 27 Nov 2025 15:00:25 +0100 Subject: [PATCH] nit --- typescript-client/sqlUtils.d.ts | 4 +--- typescript-client/sqlUtils.ts | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/typescript-client/sqlUtils.d.ts b/typescript-client/sqlUtils.d.ts index a15a6aa0ab..012ebcb38a 100644 --- a/typescript-client/sqlUtils.d.ts +++ b/typescript-client/sqlUtils.d.ts @@ -36,9 +36,7 @@ export type SqlStatement = { args: Record; - fetch< - ResultCollectionT extends ResultCollection = "last_statement_first_row" - >( + fetch( params?: FetchParams // The union is for auto-completion ): Promise>; diff --git a/typescript-client/sqlUtils.ts b/typescript-client/sqlUtils.ts index c852960500..99aeeb59cc 100644 --- a/typescript-client/sqlUtils.ts +++ b/typescript-client/sqlUtils.ts @@ -38,9 +38,7 @@ export type SqlStatement = { args: Record; - fetch< - ResultCollectionT extends ResultCollection = "last_statement_first_row" - >( + fetch( params?: FetchParams // The union is for auto-completion ): Promise>;