UNPKG

385 BTypeScriptView Raw
1import { ExpoConfig } from '../Config.types';
2import { Document } from './Manifest';
3export declare const SCREEN_ORIENTATION_ATTRIBUTE = "android:screenOrientation";
4export declare function getOrientation(config: ExpoConfig): "landscape" | "portrait" | "default" | null;
5export declare function setAndroidOrientation(config: ExpoConfig, manifestDocument: Document): Promise<Document>;