SysProM
    Preparing search index...
    LifecycleOutput: {
        nodes: {
            id: string;
            inferredPhase: "unknown" | "early" | "middle" | "late" | "terminal";
            inferredState: string;
            lifecycle?: Record<string, string | boolean>;
            name: string;
            status?:
                | "deprecated"
                | "proposed"
                | "accepted"
                | "active"
                | "implemented"
                | "adopted"
                | "defined"
                | "introduced"
                | "in_progress"
                | "complete"
                | "consolidated"
                | "experimental"
                | "retired"
                | "superseded"
                | "abandoned"
                | "deferred";
            type: string;
        }[];
        summary: Record<string, number>;
    }

    Output of lifecycle inference operation.

    Type Declaration

    • nodes: {
          id: string;
          inferredPhase: "unknown" | "early" | "middle" | "late" | "terminal";
          inferredState: string;
          lifecycle?: Record<string, string | boolean>;
          name: string;
          status?:
              | "deprecated"
              | "proposed"
              | "accepted"
              | "active"
              | "implemented"
              | "adopted"
              | "defined"
              | "introduced"
              | "in_progress"
              | "complete"
              | "consolidated"
              | "experimental"
              | "retired"
              | "superseded"
              | "abandoned"
              | "deferred";
          type: string;
      }[]
    • summary: Record<string, number>