UNPKG

263 BTypeScriptView Raw
1import { Type } from './index';
2export declare class ArrayType extends Type {
3 elementType: Type;
4 readonly type: string;
5 constructor(elementType: Type);
6 clone(): Type;
7 equals(type: Type): boolean;
8 toObject(): any;
9 toString(): string;
10}