n4auth/node_modules/@azure/msal-common/dist/authority/OpenIdConfigResponse.d.ts

11 lines
436 B
TypeScript
Raw Normal View History

2021-07-15 20:10:20 +00:00
/**
* Tenant Discovery Response which contains the relevant OAuth endpoints and data needed for authentication and authorization.
*/
export declare type OpenIdConfigResponse = {
authorization_endpoint: string;
token_endpoint: string;
end_session_endpoint: string;
issuer: string;
};
export declare function isOpenIdConfigResponse(response: object): boolean;
//# sourceMappingURL=OpenIdConfigResponse.d.ts.map