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

12 lines
452 B
TypeScript
Raw Normal View History

2024-09-04 13:13:15 -03:00
/**
* Tenant Discovery Response which contains the relevant OAuth endpoints and data needed for authentication and authorization.
*/
export type OpenIdConfigResponse = {
authorization_endpoint: string;
token_endpoint: string;
end_session_endpoint?: string;
issuer: string;
jwks_uri: string;
};
export declare function isOpenIdConfigResponse(response: object): boolean;
//# sourceMappingURL=OpenIdConfigResponse.d.ts.map