source:
node_modules/ts-toolbelt/out/List/List.d.ts
Last change on this file was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 197 bytes |
Rev | Line | |
---|---|---|
[d24f17c] | 1 | /** |
2 | * A [[List]] | |
3 | * @param A its type | |
4 | * @returns [[List]] | |
5 | * @example | |
6 | * ```ts | |
7 | * type list0 = [1, 2, 3] | |
8 | * type list1 = number[] | |
9 | * ``` | |
10 | */ | |
11 | export declare type List<A = any> = ReadonlyArray<A>; |
Note:
See TracBrowser
for help on using the repository browser.