UNPKG

nestjs-roles

Version:

Create custom roles guard and decorator

4 lines (3 loc) 266 B
import { ExecutionContext } from '@nestjs/common'; import { RolesGuardStatic } from './roles-guard-static'; export declare function createRolesGuard<R>(getRole: (context: ExecutionContext) => R | R[] | undefined | Promise<R | R[] | undefined>): RolesGuardStatic<R>;