Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 652 Bytes

paratype.arraytype.md

File metadata and controls

24 lines (14 loc) · 652 Bytes

Home > paratype > arrayType

arrayType() function

Constructs a Type that represents an array of the specified item type.

Signature:

export declare function arrayType<T>(itemType: Type<T>): Type<T[]>;

Parameters

Parameter Type Description
itemType Type<T> Type of items in the array

Returns:

Type<T[]>