Keycloak
1/**
2* https://www.keycloak.org/docs-api/11.0/rest-api/index.html#_mappingsrepresentation
3*/
4import type RoleRepresentation from "./roleRepresentation.js";5
6export default interface MappingsRepresentation {7clientMappings?: Record<string, any>;8realmMappings?: RoleRepresentation[];9}
10