mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-10 19:34:41 +00:00
14 lines
514 B
TypeScript
14 lines
514 B
TypeScript
/**
|
|
* The OpenID Configuration Endpoint Response type. Used by the authority class to get relevant OAuth endpoints.
|
|
*/
|
|
export type CloudInstanceDiscoveryErrorResponse = {
|
|
error: String;
|
|
error_description: String;
|
|
error_codes?: Array<Number>;
|
|
timestamp?: String;
|
|
trace_id?: String;
|
|
correlation_id?: String;
|
|
error_uri?: String;
|
|
};
|
|
export declare function isCloudInstanceDiscoveryErrorResponse(response: object): boolean;
|
|
//# sourceMappingURL=CloudInstanceDiscoveryErrorResponse.d.ts.map
|