@karmaniverous/jeeves-watcher
    Preparing search index...

    Interface InitialScanStatus

    Initial scan status snapshot for API consumers.

    interface InitialScanStatus {
        active: boolean;
        completedAt?: string;
        durationMs?: number;
        filesEnqueued?: number;
        filesMatched?: number;
        startedAt?: string;
    }
    Index

    Properties

    active: boolean

    Whether the initial scan is currently in progress.

    completedAt?: string

    ISO 8601 timestamp when the scan completed.

    durationMs?: number

    Total scan duration in milliseconds.

    filesEnqueued?: number

    Number of files enqueued for processing so far.

    filesMatched?: number

    Number of files matched by watch globs.

    startedAt?: string

    ISO 8601 timestamp when the scan started.