debounce.d.ts 641 B

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