UNPKG

rambda

Version:

Lightweight faster alternative to Ramda

6 lines (5 loc) 129 B
/** Describes what a **Tuple** is * @param A its type * @returns **`any[]`** */ export type Tuple<A = any> = ReadonlyArray<A>