UNPKG

365 BTypeScriptView Raw
1/**
2 * @hidden
3 */
4export interface ITenantDiscoveryResponse {
5 AuthorizationEndpoint: string;
6 EndSessionEndpoint: string;
7 Issuer: string;
8}
9/**
10 * Response type for openid-configuration endpoints
11 */
12export declare type OpenIdConfiguration = {
13 authorization_endpoint: string;
14 end_session_endpoint: string;
15 issuer: string;
16};