Skip to content

Commit c3d601d

Browse files
🧹 [Replace 'any' with 'unknown'] WasmDatabaseEngine.ts
1 parent 848c7c2 commit c3d601d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/core/engine/wasm/WasmDatabaseEngine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ export class WasmDatabaseEngine implements DatabaseOperations {
301301
const stmt = this.instance.prepare(sql);
302302
try {
303303
for (const [rId, rowObj] of rowUpdates.entries()) {
304-
const params: any[] = deletedColumns.map(c => rowObj[c.name] ?? null);
304+
const params: unknown[] = deletedColumns.map(c => rowObj[c.name] ?? null);
305305
params.push(rId);
306306
stmt.run(params);
307307
}

0 commit comments

Comments
 (0)