import { ScreenOrientation } from '@awesome-cordova-plugins/screen-orientation/ngx';
constructor(private screenOrientation: ScreenOrientation) { }
...
console.log(this.screenOrientation.type);
this.screenOrientation.lock(this.screenOrientation.ORIENTATIONS.LANDSCAPE);
this.screenOrientation.unlock();
this.screenOrientation.onChange().subscribe(
() => {
console.log("Orientation Changed");
}
);