throttle.d.ts 202 B

12345
  1. /**
  2. * 节流修饰器
  3. * @param delay 节流时间
  4. */
  5. export declare function throttle(delay?: number, rightNow?: boolean): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => void;