You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to link an Interface in a methode definition like this :
/** * Get an array of [[FooBar]] * @param id */publicgetSomeFooBar=(id : Id) : FooBar=>{/*...*/};
The probleme is that I have an Interface named "FooBar", but also an Enum containing an element named "FooBar", so the link refers to the Enum and not the Interface.
Is there a way to manually specify that I want to refer to the Interface ?