diff options
author | 2022-05-16 19:03:30 -0700 | |
---|---|---|
committer | 2022-05-16 19:03:30 -0700 | |
commit | a2b22c339eff1703eee711328c8955ed219e06dc (patch) | |
tree | de916a9965d6e92a96cce035a27680d81f5a5a0f | |
parent | aed5e39f4d90b670eaf8587c14a0c48d9671aae8 (diff) | |
download | bun-a2b22c339eff1703eee711328c8955ed219e06dc.tar.gz bun-a2b22c339eff1703eee711328c8955ed219e06dc.tar.zst bun-a2b22c339eff1703eee711328c8955ed219e06dc.zip |
Update sqlite.d.ts
Diffstat (limited to '')
-rw-r--r-- | types/bun/sqlite.d.ts | 4 |
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>>; /** |