@eagleoutice/flowr - v2.13.1
    Preparing search index...

    Interface SigDbSetOpenOptions

    options for SigDatabaseSet.openManifest -- the base cache options plus per-shard enable/disable

    interface SigDbSetOpenOptions {
        cacheDir?: string;
        excludeShards?: readonly string[];
        hash?: string;
        includeShards?: readonly string[];
        index?: SigDbIndex;
    }

    Hierarchy (View Summary)

    Hierarchy-Diagram

    UML class diagram of SigDbSetOpenOptions
    Index

    Properties

    cacheDir?: string

    directory for the decompressed, hash-keyed cache (default: see sigDbCacheDir)

    excludeShards?: readonly string[]

    load every shard except these ids (e.g. ['full-top','full-rest'] for a current-only view)

    hash?: string

    content hash to key the cache (avoids reading the source header; supplied from a manifest)

    includeShards?: readonly string[]

    only load these shard ids (e.g. ['base-current','current-top']); omit to load all

    index?: SigDbIndex

    index to use instead of a sibling .idx (supplied from a manifest so no .idx file need ship)