Member Junction
    Preparing search index...

    IndexedDB schema. Values are stored natively (structured clone) — not JSON strings. The unknown value type reflects that callers control the runtime shape via the generic SetItem<T> / GetItem<T> typing on the provider.

    interface MJ_MetadataDB {
        "mj:DatasetCache": { key: string; value: unknown };
        "mj:default": { key: string; value: unknown };
        "mj:Metadata": { key: string; value: unknown };
        "mj:RunQueryCache": { key: string; value: unknown };
        "mj:RunViewCache": { key: string; value: unknown };
        [s: string]: DBSchemaValue;
    }

    Hierarchy

    • DBSchema
      • MJ_MetadataDB

    Indexable

    • [s: string]: DBSchemaValue
    Index

    Properties

    "mj:DatasetCache": { key: string; value: unknown }
    "mj:default": { key: string; value: unknown }
    "mj:Metadata": { key: string; value: unknown }
    "mj:RunQueryCache": { key: string; value: unknown }
    "mj:RunViewCache": { key: string; value: unknown }