react-native-orientation-turbo
Version:
16 lines (12 loc) • 332 B
text/typescript
import type { Orientation } from './constants';
export type LockOrientationSubscription = {
orientation: Orientation | null;
isLocked: boolean;
};
export type OrientationSubscription = {
orientation: Orientation;
};
export type DeviceAutoRotateStatus = {
isAutoRotateEnabled: boolean;
canDetectOrientation: boolean;
};