export type Orientation = 'LANDSCAPE' | 'PORTRAIT' | 'LANDSCAPE_FLIPPED' | 'PORTRAIT_FLIPPED' | 'AUTO'; export default interface IOrientation { screenOrientation: Orientation; }