Interface Type<T>

interface Type<T> {
    constructor: any;
    name: string;
    inter<I>(typeName: string, I: Type<I>): Type<T & I>;
    union<U>(typeName: string, U: Type<U>): Type<T | U>;
}

Type Parameters

  • T

Constructors

Properties

Methods

Constructors

constructor: any

Properties

name: string

Methods