Commit 41c03be
Fix return type of AsyncDuckDBConnection.prepare
This looks like it is supposed to return `AsyncPreparedStatement<T>` but
since the type parameter is not provided it actually returns
`AsyncPreparedStatement<any>`, which passes type checking anyway since
`any` is compatible with `T`.1 parent 7d3db7e commit 41c03be
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
87 | | - | |
| 87 | + | |
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
| |||
0 commit comments