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.
16 lines
513 B
16 lines
513 B
import { ExpoConfig, PackageJSONConfig } from '@expo/config';
|
|
import { ModPlatform } from '@expo/config-plugins';
|
|
/**
|
|
* If an Expo config file does not exist, write a new one using the in-memory config.
|
|
*
|
|
* @param projectRoot
|
|
*/
|
|
export declare function ensureConfigExistsAsync(projectRoot: string): Promise<void>;
|
|
export declare function ensureConfigAsync({ projectRoot, platforms, }: {
|
|
projectRoot: string;
|
|
platforms: ModPlatform[];
|
|
}): Promise<{
|
|
exp: ExpoConfig;
|
|
pkg: PackageJSONConfig;
|
|
}>;
|