UNPKG

591 BTypeScriptView Raw
1import { InfoPlist } from './IosConfig.types';
2import { ExpoConfig } from '../Config.types';
3export declare function getName(config: ExpoConfig): string | null;
4/**
5 * CFBundleDisplayName is used for most things: the name on the home screen, in
6 * notifications, and others.
7 */
8export declare function setDisplayName(configOrName: ExpoConfig | string, infoPlist: InfoPlist): InfoPlist;
9/**
10 * CFBundleName is recommended to be 16 chars or less and is used in lists, eg:
11 * sometimes on the App Store
12 */
13export declare function setName(config: ExpoConfig, infoPlist: InfoPlist): InfoPlist;