UNPKG

keycloak-typescript

Version:

A user friendly library to use keycloak in nodejs projects

5 lines (4 loc) 188 B
import { ClientRepresentation } from '../../models/client-representation'; export interface IClientManager { get(realmName: string, clientId: string): Promise<ClientRepresentation>; }