/**
 * A [[Union]]
 * @example
 * ```ts
 * type union0 = 1 | 2 | 3
 * type union1 = 'a' | 420
 * ```
 */
export type Union = any
