UNPKG

1.11 kBTypeScriptView Raw
1import { InfoPlist } from './IosConfig.types';
2import { ExpoConfig } from '../Config.types';
3export declare function getOrientation(config: ExpoConfig): "landscape" | "portrait" | "default" | null;
4export declare const PORTRAIT_ORIENTATIONS: string[];
5export declare const LANDSCAPE_ORIENTATIONS: string[];
6export declare function setOrientation(config: ExpoConfig, infoPlist: InfoPlist): {
7 UISupportedInterfaceOrientations: string[];
8 CFBundleShortVersionString?: string | undefined;
9 CFBundleVersion?: string | undefined;
10 CFBundleDisplayName?: string | undefined;
11 CFBundleName?: string | undefined;
12 CFBundleURLTypes?: import("./IosConfig.types").URLScheme[] | undefined;
13 ITSAppUsesNonExemptEncryption?: boolean | undefined;
14 LSApplicationQueriesSchemes?: string[] | undefined;
15 FacebookAppID?: string | undefined;
16 FacebookDisplayName?: string | undefined;
17 FacebookAutoInitEnabled?: boolean | undefined;
18 FacebookAutoLogAppEventsEnabled?: boolean | undefined;
19 FacebookAdvertiserIDCollectionEnabled?: boolean | undefined;
20 GMSApiKey?: string | undefined;
21};