19 lines
509 B
TypeScript
Executable file
19 lines
509 B
TypeScript
Executable file
/*
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License.
|
|
*/
|
|
|
|
import { CommonAuthorizationCodeRequest } from "@azure/msal-common/browser";
|
|
|
|
export type AuthorizationCodeRequest = Partial<
|
|
Omit<
|
|
CommonAuthorizationCodeRequest,
|
|
"code" | "enableSpaAuthorizationCode" | "requestedClaimsHash"
|
|
>
|
|
> & {
|
|
code?: string;
|
|
nativeAccountId?: string;
|
|
cloudGraphHostName?: string;
|
|
msGraphHost?: string;
|
|
cloudInstanceHostName?: string;
|
|
};
|