UNPKG

@digital-gov-mg/nui-federation-sdk

Version:

This Frontend TypeScript SDK connects to the NUI Federation API for getting or creating, revoke, generating batch for NUI from the API

10 lines (9 loc) 254 B
import { Uin } from './uin'; import { Log } from './log'; import { System } from './system'; export declare class NuiFederation { uin: Uin; log: Log; system: System; constructor(baseUrl: string, clientId: string, clientSecret: string); }