UNPKG

853 BTypeScriptView Raw
1import { ExpoConfig } from '../Config.types';
2import { Document } from './Manifest';
3export declare function getFacebookScheme(config: ExpoConfig): string | null;
4export declare function getFacebookAppId(config: ExpoConfig): string | null;
5export declare function getFacebookDisplayName(config: ExpoConfig): string | null;
6export declare function getFacebookAutoInitEnabled(config: ExpoConfig): boolean | null | undefined;
7export declare function getFacebookAutoLogAppEvents(config: ExpoConfig): boolean | null | undefined;
8export declare function getFacebookAdvertiserIDCollection(config: ExpoConfig): boolean | null | undefined;
9export declare function setFacebookAppIdString(config: ExpoConfig, projectDirectory: string): Promise<boolean>;
10export declare function setFacebookConfig(config: ExpoConfig, manifestDocument: Document): Promise<Document>;