UNPKG

@bitjson/typedoc

Version:

Create api documentation for TypeScript projects.

11 lines (10 loc) 277 B
import { Type } from './abstract'; export declare class IntersectionType extends Type { types: Type[]; readonly type: string; constructor(types: Type[]); clone(): Type; equals(type: IntersectionType): boolean; toObject(): any; toString(): string; }