/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ import type { Region } from '@microsoft/power-apps-common/services'; import type { IHttpClient, ILogger } from '../services/index.js'; import type { Vfs } from './Vfs.types.js'; export interface IAuthenticationProvider { getAccessTokenForResource(resource: string): Promise; } export interface IPlayerActionsConfig { logger: ILogger; authProvider: IAuthenticationProvider; region: Region; environmentName: string; vfs?: Vfs; httpClient?: IHttpClient; } //# sourceMappingURL=PlayerActions.types.d.ts.map