SysProM
    Preparing search index...

    Interface GateResult

    Result of a gate check — phase number, readiness flag, and any blocking issues.

    interface GateResult {
        issues: GateIssue[];
        phase: number;
        ready: boolean;
    }
    Index

    Properties

    Properties

    issues: GateIssue[]
    phase: number
    ready: boolean