eas-cli
Version:
EAS command line tool
16 lines (15 loc) • 593 B
TypeScript
import { ExpoConfig } from '@expo/config';
import { SubmitProfile } from '@expo/eas-json';
import { Analytics } from '../analytics/AnalyticsManager';
import { CredentialsContext } from '../credentials/context';
/**
* Generate a local store configuration from the stores.
* Note, only App Store is supported at this time.
*/
export declare function downloadMetadataAsync({ projectDir, profile, exp, analytics, credentialsCtx, }: {
projectDir: string;
profile: SubmitProfile;
exp: ExpoConfig;
analytics: Analytics;
credentialsCtx: CredentialsContext;
}): Promise<string>;