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

    Interface FileHashCacheEntries

    Readonly snapshot of all resolved file entries from a FileHashCacheSession.

    Returned by FileHashCacheSession.resolve. Each entry contains the file's current stat metadata and content hash, decoded lazily from the native dataBuf.

    interface FileHashCacheEntries {
        length: number;
        session: FileHashCacheSession;
        "[iterator]"(): IterableIterator<FileHashCacheEntry>;
        find(path: string): FileHashCacheEntry | undefined;
        get(index: number): FileHashCacheEntry | undefined;
    }
    Index

    Properties

    Methods

    Properties

    length: number

    Number of file entries.

    The session that produced this snapshot.

    Methods