AbstractType
@tsed/core
Usage
typescript
import { AbstractType } from "@tsed/core";Overview
ts
interface AbstractType<T> extends Function {
prototype: T;
}Description
Describes an abstract type (abstract class), useful for declaring dependencies that should not be instantiated directly.
prototype
ts
prototype: T;