- `three` version: ^0.164.1 - `@types/three` version: ^0.164.1 - `three-stdlib` version: ^2.30.1 ### Problem description: Many [public](https://github.com/mrdoob/three.js/blob/dev/examples/jsm/controls/ArcballControls.js#L1107) and [documented](https://threejs.org/docs/?q=arcball#examples/en/controls/ArcballControls.setMouseAction) methods on ArcballControls are marked [private](https://github.com/pmndrs/three-stdlib/blob/main/src/controls/ArcballControls.ts#L1487) in three-stdlib. ### Relevant code: ... ### Suggested solution: Replace the private access modifier with public. Are these marked private intentionally?