UNPKG

nest-keycloak-connect

Version:
12 lines (11 loc) 364 B
import { RoleMatchingMode } from '../constants'; export interface RoleDecoratorOptionsInterface { /** * The roles to match at the application/client, prefix any realm-level roles with "realm:" (i.e realm:admin) */ roles: string[]; /** * Role matching mode, defaults to {@link RoleMatchingMode.ANY} */ mode?: RoleMatchingMode; }