Can I assign a type to a variable which gets a object result from a third party library?
const result = thirdPartyLib.doSomething();
Now I may have a ES6 class
class MyClass {
...
}
And I want to annotate my result to be of type MyClass.
Is this possible using JSDoc?

