Skip to content

Commit

Permalink
Update sqlite.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner committed May 17, 2022
1 parent aed5e39 commit a2b22c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/bun/sqlite.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -518,7 +518,7 @@ declare module "bun:sqlite" {
*
*/
values(
...params: ParamsType
...params: ParamsType[]
): Array<Array<string | bigint | number | boolean | Uint8Array>>;

/**
Expand Down

0 comments on commit a2b22c3

Please sign in to comment.