import { AccountInfo, CommonSilentFlowRequest } from "@azure/msal-common/node"; /** * SilentFlow parameters passed by the user to retrieve credentials silently * @public */ export type SilentFlowRequest = Partial> & { /** * Account entity to lookup the credentials. */ account: AccountInfo; /** * Array of scopes the application is requesting access to. */ scopes: Array; }; //# sourceMappingURL=SilentFlowRequest.d.ts.map