Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 190 Bytes

README.md

File metadata and controls

13 lines (8 loc) · 190 Bytes

Union

A helper to get Union from Tuple.

Usage

import type { _Union } from 'flown'

declare var x: $Call<_Union, [string, number, boolean]>

;(x: string | number | boolean)