aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/bun-types/sqlite.d.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/bun-types/sqlite.d.ts b/packages/bun-types/sqlite.d.ts
index e1b8adcd0..c5b1af1c8 100644
--- a/packages/bun-types/sqlite.d.ts
+++ b/packages/bun-types/sqlite.d.ts
@@ -235,6 +235,7 @@ declare module "bun:sqlite" {
ParamsType extends SQLQueryBindings | SQLQueryBindings[],
>(
sqlQuery: string,
+ params?: ParamsType
): Statement<
ReturnType,
ParamsType extends Array<any> ? ParamsType : [ParamsType]