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