@photostructure/fs-metadata
    Preparing search index...

    Interface WatchAvailableSpaceOptions

    interface WatchAvailableSpaceOptions {
        hysteresisBytes?: number;
        minimumAvailableBytes: number;
        persistent?: boolean;
        pollIntervalMs?: number;
        signal?: AbortSignal;
        timeoutMs?: number;
    }

    Hierarchy (View Summary)

    Index
    hysteresisBytes?: number

    Extra available bytes required before recovering from below-minimum.

    minimumAvailableBytes: number

    Threshold whose crossings should be reported.

    persistent?: boolean

    Whether the pending poll timer keeps the Node.js event loop alive.

    pollIntervalMs?: number

    Milliseconds between one completed poll and the start of the next.

    signal?: AbortSignal

    Closes the watcher when aborted.

    timeoutMs?: number

    Caller-visible budget for each capacity probe; 0 disables it. Defaults to getTimeoutMsDefault.