UNPKG

lodash-decorators

Version:

A collection of decorators using lodash at it's core.

22 lines (21 loc) 669 B
import { Applicator } from '../applicators'; export interface DecoratorConfigOptions { bound?: boolean; setter?: boolean; getter?: boolean; property?: boolean; method?: boolean; optionalParams?: boolean; } export declare class DecoratorConfig { readonly execute: Function; readonly applicator: Applicator; readonly options: DecoratorConfigOptions; constructor(execute: Function, applicator: Applicator, options?: DecoratorConfigOptions); readonly bound: boolean; readonly setter: boolean; readonly getter: boolean; readonly property: boolean; readonly method: boolean; readonly optionalParams: boolean; }