@azure/msal-node
Version:
Microsoft Authentication Library for Node
20 lines • 784 B
TypeScript
import { CommonRefreshTokenRequest } from "@azure/msal-common/node";
/**
* CommonRefreshTokenRequest
* @public
*/
export type RefreshTokenRequest = Partial<Omit<CommonRefreshTokenRequest, "scopes" | "refreshToken" | "authenticationScheme" | "resourceRequestMethod" | "resourceRequestUri" | "storeInCache">> & {
/**
* Array of scopes the application is requesting access to.
*/
scopes: Array<string>;
/**
* A refresh token returned from a previous request to the Identity provider.
*/
refreshToken: string;
/**
* Force MSAL to cache a refresh token flow response when there is no account in the cache. Used for migration scenarios.
*/
forceCache?: boolean;
};
//# sourceMappingURL=RefreshTokenRequest.d.ts.map