Fix indexeddb deletes

This commit is contained in:
Jon Staab
2025-11-13 16:39:44 -08:00
parent 2421c02c24
commit b0731503a8
5 changed files with 57 additions and 13 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import type {Maybe} from "@welshman/lib"
export type IDBAdapter = {
name: string
keyPath: string[]
keyPath: string
init: (table: IDBTable<any>) => Promise<Unsubscriber>
}