import { CommonRefreshTokenRequest } from "@azure/msal-common/node"; /** * CommonRefreshTokenRequest * @public */ export type RefreshTokenRequest = Partial> & { /** * Array of scopes the application is requesting access to. */ scopes: Array; /** * 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