buildDocs/throttleAll.js
import { throttle } from 'lodash';
import { DecoratorConfig, DecoratorFactory } from './factory';
import { PreValueApplicator } from './applicators';
export const ThrottleAll = DecoratorFactory.createDecorator(new DecoratorConfig(throttle, new PreValueApplicator(), { setter: true }));
export { ThrottleAll as throttleAll };
export default ThrottleAll;