Type Interface

Module
import { Type } from "@tsed/core"
Source/packages/core/src/interfaces/Type.ts

Overview

const Type: FunctionConstructor;
interface Type<;T>; extends Function {
    new (...args: any[]): T;
}

Description

An example of a Type is MyCustomComponent filters, which in JavaScript is be represented by the MyCustomComponent constructor function.