source: node_modules/ts-toolbelt/out/List/List.d.ts

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 197 bytes
Line 
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 */
11export declare type List<A = any> = ReadonlyArray<A>;
Note: See TracBrowser for help on using the repository browser.