wonday / react-native-orientation-locker

A react-native module that can listen on orientation changing of device, get current orientation, lock to preferred orientation.
MIT License
761 stars 274 forks source link

OrientationType is not matching exported constants #269

Open mujehoxe opened 1 year ago

mujehoxe commented 1 year ago

export enum OrientationType { "PORTRAIT" = "PORTRAIT", "PORTRAIT-UPSIDEDOWN" = "PORTRAIT-UPSIDEDOWN", "LANDSCAPE-LEFT" = "LANDSCAPE-LEFT", "LANDSCAPE-RIGHT" = "LANDSCAPE-RIGHT", "FACE-UP" = "FACE-UP", "FACE-DOWN" = "FACE-DOWN", "UNKNOWN" = "UNKNOWN", }

export const LANDSCAPE_LEFT = 'LANDSCAPE_LEFT';

using a hyphen (-) on the OrientationTypes while using an underscore on the exported constant