Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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`.
- Loading branch information