Files
2025-03-07 19:22:02 +01:00

9 lines
398 B
TypeScript

import { CommonAuthorizationUrlRequest } from "@azure/msal-common/browser";
/**
* This type is deprecated and will be removed on the next major version update
*/
export type AuthorizationUrlRequest = Omit<CommonAuthorizationUrlRequest, "state" | "nonce" | "requestedClaimsHash" | "platformBroker"> & {
state: string;
nonce: string;
};
//# sourceMappingURL=AuthorizationUrlRequest.d.ts.map