@dolittle/sdk.common
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
38 lines • 644 B
TypeScript
/**
* Represents the targets of a decorator.
*/
export declare enum DecoratorTarget {
/**
* A class (constructor) target.
*/
Class = 1,
/**
* A constructor parameter target.
*/
ConstructorParameter = 2,
/**
* A method target.
*/
Method = 4,
/**
* A method parameter target.
*/
MethodParameter = 8,
/**
* A property target.
*/
Property = 16,
/**
* A setter target.
*/
Setter = 32,
/**
* A getter target.
*/
Getter = 64,
/**
* All targets.
*/
All = 127
}
//# sourceMappingURL=DecoratorTarget.d.ts.map