RateLimitBoundary: {
    limit: number | typeof Infinity;
    remaining: number | typeof Infinity;
    reset: number;
    used: number;
}

Type declaration

  • limit: number | typeof Infinity

    The maximum number of calls for each period. Please note, this can be Infinity.

  • remaining: number | typeof Infinity

    The number of calls remaining before reset. Please note, this can be Infinity.

  • reset: number

    Time in seconds until call count resets.

  • used: number

    The number of calls that have been used.