MonitorOrientation import { MonitorOrientation } from "destack:display/binding"; Display output orientation. export enum MonitorOrientation { Unknown = 0, Landscape = 1, Portrait = 2, LandscapeFlipped = 3, PortraitFlipped = 4, } language/library/src/display/binding/monitor.ds:11:22 Variants Unknown = 0 Backend did not report one orientation. Landscape = 1 Landscape orientation. Portrait = 2 Portrait orientation. LandscapeFlipped = 3 Inverted landscape orientation. PortraitFlipped = 4 Inverted portrait orientation.