We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 853cfb7 + 8aa8e4a commit aaf23f8Copy full SHA for aaf23f8
index.d.ts
@@ -1415,6 +1415,8 @@ declare class SQLite3Error extends Error {
1415
/** A pointer to a location in WASM heap memory. */
1416
declare type WasmPointer = number;
1417
1418
+declare type NullPointer = 0 | null | undefined;
1419
+
1420
declare type StructPtrMapper<T> = {
1421
StructType: T;
1422
/**
@@ -6548,7 +6550,7 @@ declare type CAPI = {
6548
6550
*
6549
6551
* See https://www.sqlite.org/session/sqlite3session_attach.html
6552
*/
- sqlite3session_attach: (pSession: WasmPointer, tableName: string) => number;
6553
+ sqlite3session_attach: (pSession: WasmPointer, tableName: string | NullPointer) => number;
6554
6555
6556
* Set a table filter on a Session Object.
0 commit comments