@engie-group/ngx-gem-spaas
Version:
This library contains services, components, images and styles to provide a unified look and way-of-working throughout GEM SPaaS.
21 lines (20 loc) • 516 B
TypeScript
export declare class OktaConfigModel {
additionalScopes: string[];
clientId: string;
interceptAddContentHeader?: boolean;
interceptUrls: string[];
tenantId: string;
url: string;
withPath?: boolean;
constructor(objIn: any);
}
export declare class OktaUserModel {
email: string;
firstName: string;
lastName: string;
groups: string[];
userId: string;
constructor(props: any);
static stripMail(strIn: string): string;
checkGroup(group: string): boolean;
}