UNPKG

keycloak-typescript

Version:

A user friendly library to use keycloak in nodejs projects

7 lines (6 loc) 291 B
import { RoleRepresentation } from './role-representation'; import { ClientMappingsRepresentation } from './client-mappings-representation'; export interface MappingsRepresentation { realmMappings?: RoleRepresentation[]; clientMappings?: Map<string, ClientMappingsRepresentation>; }