UNPKG

211 BTypeScriptView Raw
1import { List } from './List';
2/**
3 * Transform a [[List]] into an [[Union]]
4 * @param L to transform
5 * @returns [[Any]]
6 * @example
7 * ```ts
8 * ```
9 */
10export declare type UnionOf<L extends List> = L[number];