Skip to content

Type

@tsed/core

Usage

typescript
import { Type } from "@tsed/core";

See /packages/core/src/types/domain/Type.ts.

Overview

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

new

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

Released under the MIT License.