UNPKG

lodash-decorators

Version:

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

7 lines (6 loc) 344 B
import { LodashMethodDecorator } from './factory'; import { ThrottleOptions } from './shared'; declare const decorator: (...args: any[]) => MethodDecorator & PropertyDecorator; export declare function ThrottleAll(wait?: number, options?: ThrottleOptions): LodashMethodDecorator; export { ThrottleAll as throttleAll }; export default decorator;