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