Skip to content

Commit 0f0dec8

Browse files
authored
Merge pull request #106 from k-yle/patch-1
fix(sqlite3_js_db_export): more specific return type
2 parents a54fc17 + ecd5407 commit 0f0dec8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7582,7 +7582,7 @@ declare type CAPI = {
75827582
sqlite3_js_db_export: (
75837583
db: Database | WasmPointer,
75847584
schema?: string | WasmPointer,
7585-
) => Uint8Array;
7585+
) => Uint8Array<ArrayBuffer>;
75867586

75877587
/**
75887588
* Given a `sqlite3*` and a database name (JS string or WASM C-string pointer,

0 commit comments

Comments
 (0)