aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--types/bun/sqlite.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/types/bun/sqlite.d.ts b/types/bun/sqlite.d.ts
index 1c415f43e..02d1007d0 100644
--- a/types/bun/sqlite.d.ts
+++ b/types/bun/sqlite.d.ts
@@ -481,7 +481,7 @@ declare module "bun:sqlite" {
* | `null` | `NULL` |
*
*/
- run(...params: ParamsType): void;
+ run(...params: ParamsType[]): void;
/**
* Execute the prepared statement and return the results as an array of arrays.
@@ -518,7 +518,7 @@ declare module "bun:sqlite" {
*
*/
values(
- ...params: ParamsType
+ ...params: ParamsType[]
): Array<Array<string | bigint | number | boolean | Uint8Array>>;
/**