Coda by Ian Macalinao
    Preparing search index...

    Interface AccountLinkNode<TProgram>

    A reference to an account defined elsewhere — possibly in a different program.

    interface AccountLinkNode<
        TProgram extends
            ProgramLinkNode
            | undefined = ProgramLinkNode | undefined,
    > {
        kind: "accountLinkNode";
        name: CamelCaseString;
        program?: TProgram;
    }

    Type Parameters

    Index
    kind: "accountLinkNode"

    The name of the referenced account.

    program?: TProgram

    The program the referenced account belongs to. When omitted, the surrounding program is assumed.