A TL union (classes that share the same type)

interface TlUnion {
    classes: TlEntry[];
    comment?: string;
    name: string;
}

Properties

Properties

classes: TlEntry[]

Classes in the union

comment?: string

Description of the union

name: string

Name of the union (== classes[*].type)