Coda by Ian Macalinao
    Preparing search index...

    Interface RootNode<TProgram, TAdditionalPrograms>

    The root of a Codama IDL document. Pairs a primary program with any number of additional programs and tags the document with the spec version.

    interface RootNode<
        TProgram extends ProgramNode = ProgramNode,
        TAdditionalPrograms extends ProgramNode[] = ProgramNode[],
    > {
        additionalPrograms: TAdditionalPrograms;
        kind: "rootNode";
        program: TProgram;
        standard: "codama";
        version: "1.7.0";
    }

    Type Parameters

    Index
    additionalPrograms: TAdditionalPrograms

    Additional programs referenced by the primary program.

    kind: "rootNode"
    program: TProgram

    The primary program described by the document.

    standard: "codama"

    A literal marker identifying the document as a Codama IDL.

    version: "1.7.0"

    The Codama spec version this document conforms to.