UNPKG

305 BTypeScriptView Raw
1export declare namespace Decorator {
2 enum Type {
3 ConstructorParameter = "CTOR_PARAM",
4 MethodParameter = "METHOD_PARAM",
5 Method = "METHOD",
6 Property = "PROP",
7 Class = "CLASS"
8 }
9 function getType(target: any, key: string, index: number): Type;
10}