mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-16 22:07:09 +08:00
18 lines
519 B
TypeScript
18 lines
519 B
TypeScript
import type { StorageConstructor } from '..';
|
|
import { IndexedDBBlobStorage } from './blob';
|
|
import { IndexedDBBlobSyncStorage } from './blob-sync';
|
|
import { IndexedDBDocStorage } from './doc';
|
|
import { IndexedDBDocSyncStorage } from './doc-sync';
|
|
|
|
export * from './blob';
|
|
export * from './blob-sync';
|
|
export * from './doc';
|
|
export * from './doc-sync';
|
|
|
|
export const idbStorages = [
|
|
IndexedDBDocStorage,
|
|
IndexedDBBlobStorage,
|
|
IndexedDBDocSyncStorage,
|
|
IndexedDBBlobSyncStorage,
|
|
] satisfies StorageConstructor[];
|