lodash-decorators
Version:
A collection of decorators using lodash at it's core.
11 lines (10 loc) • 527 B
TypeScript
import { LodashDecorator } from './common';
import { DecoratorConfig } from './DecoratorConfig';
export declare type GenericDecorator = (...args: any[]) => LodashDecorator;
export declare class InternalDecoratorFactory {
createDecorator(config: DecoratorConfig): GenericDecorator;
createInstanceDecorator(config: DecoratorConfig): GenericDecorator;
private _isApplicable(context, config);
private _resolveDescriptor(target, name, descriptor?);
}
export declare const DecoratorFactory: InternalDecoratorFactory;