throttle.d.ts 186 B

1234567
  1. /// <reference types="lodash" />
  2. /**
  3. * throttle
  4. * @param func
  5. * @param wait
  6. */
  7. export default function throttle(func: any, wait: number): import("lodash").DebouncedFunc<any>;