@azure/msal-common
Version:
Microsoft Authentication Library for js
14 lines • 421 B
TypeScript
/**
* Response returned after processing the code response query string or fragment.
*/
export type AuthorizationCodePayload = {
code: string;
cloud_instance_name?: string;
cloud_instance_host_name?: string;
cloud_graph_host_name?: string;
msgraph_host?: string;
state?: string;
nonce?: string;
client_info?: string;
};
//# sourceMappingURL=AuthorizationCodePayload.d.ts.map