The type of the require 2fa decorator.

interface Require2faFn {
    skip: () => MethodDecorator & ClassDecorator;
    (allowedMethods?: TwoFactorMethods): MethodDecorator & ClassDecorator;
}

Properties

Properties

skip: () => MethodDecorator & ClassDecorator

This skips the require 2fa validation.