1 | import { LodashMethodDecorator } from './factory';
|
2 | import { ThrottleOptions } from './shared';
|
3 | declare const decorator: (...args: any[]) => MethodDecorator & PropertyDecorator;
|
4 | export declare function ThrottleAll(wait?: number, options?: ThrottleOptions): LodashMethodDecorator;
|
5 | export { ThrottleAll as throttleAll };
|
6 | export default decorator;
|