Coda by Ian Macalinao
    Preparing search index...

    Interface EnumTypeNode<TVariants, TSize>

    interface EnumTypeNode<
        TVariants extends EnumVariantTypeNode[] = EnumVariantTypeNode[],
        TSize extends
            NestedTypeNode<NumberTypeNode> = NestedTypeNode<NumberTypeNode>,
    > {
        kind: "enumTypeNode";
        size: TSize;
        variants: TVariants;
    }

    Type Parameters

    Index

    Properties

    Properties

    kind: "enumTypeNode"
    size: TSize
    variants: TVariants