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[]>