InjectablePropertyType
@tsed/di
Usage
typescript
import { InjectablePropertyType } from "@tsed/di";
See /packages/di/src/types/common/domain/InjectablePropertyType.ts.
Overview
ts
enum InjectablePropertyType {
METHOD = "method",
PROPERTY = "property",
CONSTANT = "constant",
VALUE = "value",
INTERCEPTOR = "interceptor"
}
METHOD
ts
METHOD = "method",
PROPERTY
ts
PROPERTY = "property",
CONSTANT
ts
CONSTANT = "constant",
VALUE
ts
VALUE = "value",
INTERCEPTOR
ts
INTERCEPTOR = "interceptor"