# Interface Type

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

# Overview

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

# Members

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