UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

12 lines (11 loc) 163 B
/** A [[List]] @param A its type @returns [[List]] @example ```ts type list0 = [1, 2, 3] type list1 = number[] ``` */ export type List<A = any> = ReadonlyArray<A>