@experium/nest-bruteforce-guard
Version:
Authorization protection from bruteforce
9 lines (8 loc) • 333 B
TypeScript
import { ExecutionContext } from '@nestjs/common';
interface LoginEntityOptions {
loginFieldName?: string;
passwordFieldName?: string;
callback?: (context?: ExecutionContext) => void;
}
export declare const LoginEntityOptions: (options: LoginEntityOptions) => import("@nestjs/common").CustomDecorator<string>;
export {};