Update SqliteValue to expect a Uint8Array<ArrayBuffer>

This commit is contained in:
Jamie 2026-03-17 09:10:11 -07:00 committed by GitHub
parent e303f7f333
commit 8ca829224f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -108,7 +108,7 @@ export type StatementParameters<Options extends StatementOptions> =
*/
export type SqliteValue<Options extends StatementOptions> =
| string
| Uint8Array
| Uint8Array<ArrayBuffer>
| number
| null
| (Options extends { bigint: true } ? bigint : never);