index.d.ts 449 字节
Newer Older
码梦天涯's avatar
码梦天涯 已提交
1 2 3 4 5 6 7 8 9 10
export interface IDecorator {
    (clazz: object, name: string, props: PropertyDescriptor): any;
}
export interface IDecoratorBuilder<T> {
    (input: T): IDecorator;
}
export interface IDynamicDecorator<T> extends IDecorator, IDecoratorBuilder<T> {
    (clazz: object | T, name: string, props: PropertyDescriptor): any | IDecorator;
}
export declare function dynamicDecorator<T>(defaultArg: T, builder: IDecoratorBuilder<T>): IDynamicDecorator<T>;