Coda by Ian Macalinao
    Preparing search index...

    Interface InstructionStatusNode

    The lifecycle stage of an instruction (draft, live, deprecated, archived) with an optional accompanying message.

    interface InstructionStatusNode {
        kind: "instructionStatusNode";
        lifecycle: InstructionLifecycle;
        message?: string;
    }
    Index
    kind: "instructionStatusNode"

    The lifecycle stage.

    message?: string

    Free-form prose accompanying the status — e.g. a deprecation notice with migration guidance.