@gip-recia/extended-uportal-header
Version:
a component to deport the uPortal menu
12 lines • 499 B
TypeScript
import { type Response as OIDCResponse } from '@uportal/open-id-connect';
export interface userInfo {
displayName: string;
picture?: string;
email: string;
orgId?: string;
hasOtherOrgs: boolean;
}
export default class userInfoService {
static get(userInfoApiUrl: string, layoutApiUrl: string, orgIdAttribute: string, orgIdsAttribute: string, userInfo: OIDCResponse | null | undefined, debug: boolean): Promise<userInfo | null>;
}
//# sourceMappingURL=userInfoService.d.ts.map