UNPKG

269 BTypeScriptView Raw
1import { Type } from './abstract';
2export declare class TupleType extends Type {
3 elements: Type[];
4 readonly type: string;
5 constructor(elements: Type[]);
6 clone(): Type;
7 equals(type: TupleType): boolean;
8 toObject(): any;
9 toString(): string;
10}