UNPKG

598 BTypeScriptView Raw
1import { InfoPlist } from './IosConfig.types';
2import { ExpoConfig } from '../Config.types';
3export declare function getScheme(config: ExpoConfig): string | null;
4export declare function setScheme(config: ExpoConfig, infoPlist: InfoPlist): InfoPlist;
5export declare function appendScheme(scheme: string | null, infoPlist: InfoPlist): InfoPlist;
6export declare function removeScheme(scheme: string | null, infoPlist: InfoPlist): InfoPlist;
7export declare function hasScheme(scheme: string, infoPlist: InfoPlist): boolean;
8export declare function getSchemesFromPlist(infoPlist: InfoPlist): string[];