fast-fs-hash - v0.0.0-rc4
    Preparing search index...

    Interface FileHashCacheConfigOptions

    Options for FileHashCache.configure — sets cache configuration. All fields are optional. Omitted fields keep the current value.

    interface FileHashCacheConfigOptions {
        files?: Iterable<string, any, any> | null;
        fingerprint?: Uint8Array<ArrayBufferLike> | null;
        lockTimeoutMs?: number;
        rootPath?: string | true | null;
        version?: number;
    }
    Index

    Properties

    files?: Iterable<string, any, any> | null

    Override file list. Pass null to clear.

    fingerprint?: Uint8Array<ArrayBufferLike> | null

    Override fingerprint (16 bytes, or null to clear).

    lockTimeoutMs?: number

    Override lock acquisition timeout in ms.

    rootPath?: string | true | null

    Override root path. Pass true to auto-detect from files. Pass null to clear.

    version?: number

    Override cache version (u32).