Type definition for a union type.

This interface extends BaseType and represents a union type, which can be one of several specified types.

interface UnionType {
    children: Type[];
    comments?: string[];
    isObservable?: boolean;
    name: "union";
    typeHint?: TypeHint;
}

Hierarchy (view full)

Properties

children: Type[]
comments?: string[]
isObservable?: boolean
name: "union"
typeHint?: TypeHint