UNPKG

eas-cli

Version:

EAS command line tool

16 lines (15 loc) 597 B
import { ExpoGraphqlClient } from '../commandUtils/context/contextUtils/createGraphqlClient'; import AppStoreApi from '../credentials/ios/appstore/AppStoreApi'; import { Actor } from '../user/User'; export interface DeviceManagerContext { appStore: AppStoreApi; user: Actor; graphqlClient: ExpoGraphqlClient; projectId: string | null; } export declare function createContextAsync({ appStore, user, graphqlClient, projectId, }: { appStore: AppStoreApi; user: Actor; graphqlClient: ExpoGraphqlClient; projectId: string | undefined; }): Promise<DeviceManagerContext>;