diff --git a/packages/duckdb-wasm/src/parallel/async_connection.ts b/packages/duckdb-wasm/src/parallel/async_connection.ts index 52a782267..783a18bd5 100644 --- a/packages/duckdb-wasm/src/parallel/async_connection.ts +++ b/packages/duckdb-wasm/src/parallel/async_connection.ts @@ -84,7 +84,7 @@ export class AsyncDuckDBConnection { /** Create a prepared statement */ public async prepare( text: string, - ): Promise { + ): Promise> { const stmt = await this._bindings.createPrepared(this._conn, text); return new AsyncPreparedStatement(this._bindings, this._conn, stmt); }