UNPKG

901 BTypeScriptView Raw
1export declare type URLScheme = {
2 CFBundleURLName?: string;
3 CFBundleURLSchemes: string[];
4};
5export declare type InterfaceOrientation = 'UIInterfaceOrientationPortrait' | 'UIInterfaceOrientationPortraitUpsideDown' | 'UIInterfaceOrientationLandscapeLeft' | 'UIInterfaceOrientationLandscapeRight';
6export declare type InfoPlist = {
7 CFBundleShortVersionString?: string;
8 CFBundleVersion?: string;
9 CFBundleDisplayName?: string;
10 CFBundleName?: string;
11 CFBundleURLTypes?: Array<URLScheme>;
12 ITSAppUsesNonExemptEncryption?: boolean;
13 LSApplicationQueriesSchemes?: Array<string>;
14 FacebookAppID?: string;
15 FacebookDisplayName?: string;
16 FacebookAutoInitEnabled?: boolean;
17 FacebookAutoLogAppEventsEnabled?: boolean;
18 FacebookAdvertiserIDCollectionEnabled?: boolean;
19 UISupportedInterfaceOrientations?: Array<InterfaceOrientation>;
20 GMSApiKey?: string;
21};