jeeves-meta-monorepo
    Preparing search index...

    Interface LockState

    Parsed state of a .lock file.

    interface LockState {
        active: boolean;
        data: Record<string, unknown> | null;
        exists: boolean;
        staged: boolean;
    }
    Index

    Properties

    active: boolean

    Whether the lock is actively held (non-stale PID lock).

    data: Record<string, unknown> | null

    Raw parsed data, or null if missing/corrupt.

    exists: boolean

    Whether the lock file exists.

    staged: boolean

    Whether the lock contains a staged synthesis result.