The type of the is logged in decorator.

interface IsLoggedInFn {
    skip: () => MethodDecorator & ClassDecorator;
    (allowedStrategies?: AuthStrategies): MethodDecorator & ClassDecorator;
}

Properties

Properties

skip: () => MethodDecorator & ClassDecorator

This skips the is logged in validation.