UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

10 lines (9 loc) 129 B
/** * A [[Union]] * @example * ```ts * type union0 = 1 | 2 | 3 * type union1 = 'a' | 420 * ``` */ export type Union = any