throttle.d.ts 659 B

1234567891011121314151617181920212223242526
  1. export interface ThrottleOptions {
  2. /**
  3. * 是否在之前执行
  4. */
  5. leading?: boolean;
  6. /**
  7. * 是否在之后执行
  8. */
  9. trailing?: boolean;
  10. }
  11. /**
  12. * 节流函数;当被调用 n 毫秒后才会执行,如果在这时间内又被调用则至少每隔 n 秒毫秒调用一次该函数
  13. * @param callback 回调
  14. * @param wait 毫秒
  15. * @param options 可选参数
  16. */
  17. export declare function throttle<C>(callback: (this: C, ...args: any[]) => any, wait: number, options?: ThrottleOptions): (this: C, ...args: any[]) => any;
  18. declare module './ctor' {
  19. interface XEUtilsMethods {
  20. throttle: typeof throttle;
  21. }
  22. }
  23. export default throttle