Skip to content

Commit 8ca8292

Browse files
Update SqliteValue to expect a Uint8Array<ArrayBuffer>
1 parent e303f7f commit 8ca8292

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export type StatementParameters<Options extends StatementOptions> =
108108
*/
109109
export type SqliteValue<Options extends StatementOptions> =
110110
| string
111-
| Uint8Array
111+
| Uint8Array<ArrayBuffer>
112112
| number
113113
| null
114114
| (Options extends { bigint: true } ? bigint : never);

0 commit comments

Comments
 (0)