I’m working on a small project in order to learn TS
/JS
and Pixi JS
. And came up with the following problem I cannot find the solution (or, at least, explanation) for.
Per the reference, there is the lock()
method for the screen orientation. However, when I try to use it, I get the error TS2339: Property 'lock' does not exist on type 'ScreenOrientation'.
in VS Code
during the build stage. Moreover, the VS Code
‘s drop-down menu doesn’t list the lock()
method. However, it provides the unlock()
method.
Question: How to fix that issue?