rate-limiter-options.d.ts 296 B

123456789101112
  1. export interface RateLimiterOptions {
  2. /**
  3. * Max number of jobs to process in the time period
  4. * specified in `duration`.
  5. */
  6. max: number;
  7. /**
  8. * Time in milliseconds. During this time, a maximum
  9. * of `max` jobs will be processed.
  10. */
  11. duration: number;
  12. }