/** Describes what a **Tuple** is
 * @param A its type
 * @returns **`any[]`**
 */
export type Tuple<A = any> = ReadonlyArray<A>
