You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
486 B

import { ExpoAppManifest, ExpoConfig, PackageJSONConfig, ProjectTarget } from '@expo/config';
export declare type PublishOptions = {
releaseChannel?: string;
target?: ProjectTarget;
resetCache?: boolean;
maxWorkers?: number;
quiet?: boolean;
};
export declare function getPublishExpConfigAsync(projectRoot: string, options?: Pick<PublishOptions, 'releaseChannel'>): Promise<{
exp: ExpoAppManifest;
pkg: PackageJSONConfig;
hooks: ExpoConfig['hooks'];
}>;