I've been utilizing typescript definitions for Forge from the DefinitelyTyped repository: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/forge-viewer
However, there seems to be a lack of typings, particularly those associated with Profiles management:
viewer.registerProfile(...)
wiewer.setProfile(...)
constructor: Autodesk.Viewing.Profile(customProfileSettings...)
Autodesk.Viewing.ProfileSettings.AEC
Autodesk.Viewing.ProfileSettings.clone(...)
Additionally, I require the function for setting FPSs:
viewer.impl.setFPSTargets(...)
I'm unsure how to declare them as they are not even documented in Autodesk's official documentation:
Does anyone have access to these types or any specific guidance on how to implement them?