# Type Constant

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

# Overview

const Type: FunctionConstructor;
/**
 *
 */
export interface Type<T = any> 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.

# Members

new (...args: any[]): T;