Interface IndexedDBOptions

Configuration options for the IndexedDB file system.

interface IndexedDBOptions {
    idbFactory?: IDBFactory;
    storeName?: string;
}

Properties

idbFactory?: IDBFactory

The IDBFactory to use. Defaults to globalThis.indexedDB.

storeName?: string

The name of this file system. You can have multiple IndexedDB file systems operating at once, but each must have a different name.

Generated using TypeDoc