interface PlainUnion {
    dataType?: string;
    declared: boolean;
    name: string;
    subTypes: Set<string>;
    superTypes: Set<string>;
    type: PlainPropertyType;
}

Properties

dataType?: string
declared: boolean
name: string
subTypes: Set<string>
superTypes: Set<string>