feat(nbstore): add nbstore worker (#9185)

This commit is contained in:
EYHN
2024-12-20 08:01:23 +00:00
parent 30200ff86d
commit cbaf35df0b
51 changed files with 1144 additions and 501 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ import {
type DocClock,
type DocClocks,
type DocRecord,
DocStorage,
DocStorageBase,
type DocStorageOptions,
type DocUpdate,
} from '../../storage';
@@ -15,7 +15,7 @@ interface ChannelMessage {
origin?: string;
}
export class IndexedDBDocStorage extends DocStorage {
export class IndexedDBDocStorage extends DocStorageBase {
readonly connection = new IDBConnection(this.options);
get db() {