import {Concat} from'./Concat'import {Tuple} from'./Tuple'/** Add an element **`A`** at the end of **`T`**
* @param T to append to
* @param A to be added to
* @returns **`any[]`**
* @example
* ```ts
* ```
*/exporttypeAppend<T extendsTuple, A extendsany> =
Concat<T, [A]>