UNPKG

@azure/msal-node

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