Files
powerpoint-toolbox/node_modules/@azure/msal-common/dist/network/RequestThumbprint.d.ts
T
2025-03-07 19:22:02 +01:00

19 lines
586 B
TypeScript

import { ShrOptions } from "../crypto/SignedHttpRequest.js";
import { AuthenticationScheme } from "../utils/Constants.js";
/**
* Type representing a unique request thumbprint.
*/
export type RequestThumbprint = {
clientId: string;
authority: string;
scopes: Array<string>;
homeAccountIdentifier?: string;
claims?: string;
authenticationScheme?: AuthenticationScheme;
resourceRequestMethod?: string;
resourceRequestUri?: string;
shrClaims?: string;
sshKid?: string;
shrOptions?: ShrOptions;
};
//# sourceMappingURL=RequestThumbprint.d.ts.map