7 lines
316 B
TypeScript
7 lines
316 B
TypeScript
import { ThrottlerGuard, ThrottlerRequest } from '@nestjs/throttler';
|
|
export declare class TenantThrottlerGuard extends ThrottlerGuard {
|
|
private readonly logger;
|
|
protected getTracker(req: Record<string, any>): Promise<string>;
|
|
protected handleRequest(requestProps: ThrottlerRequest): Promise<boolean>;
|
|
}
|