UNPKG

@nestjs/throttler

Version:

A Rate-Limiting module for NestJS to work on Express, Fastify, Websockets, Socket.IO, and GraphQL, all rolled up into a simple package.

8 lines (7 loc) 217 B
export interface ThrottlerStorageOptions { totalHits: Map<string, number>; expiresAt: number; isBlocked: boolean; blockExpiresAt: number; } export declare const ThrottlerStorageOptions: unique symbol;