Skip to content

Commit 0636b8f

Browse files
committed
Add undefined and boolean to BindingSpec type
1 parent 0fa5393 commit 0636b8f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

index.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ declare type BindingSpec =
2121
| readonly SqlValue[]
2222
| { [paramName: string]: SqlValue }
2323
/** Assumed to have binding index `1` */
24-
| SqlValue;
24+
| SqlValue
25+
| undefined
26+
| boolean;
2527

2628
/**
2729
* Certain WASM-bound APIs, where explicitly noted, have additional string-type

0 commit comments

Comments
 (0)