@bodil/bdb
    Preparing search index...

    Type Alias IndexedDBBackendConfig

    Configuration for IndexedDB backends.

    type IndexedDBBackendConfig = {
        name: string;
        table?: string;
        version: number;
    }

    Properties

    name: string

    Name of the IndexedDB database to connect to.

    table?: string

    Name of the IndexedDB database table to store our database in. Defaults to "store".

    version: number

    Version number of the database.