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
exportinterfaceIThing<T>{/** * Does a thing * @param {string} key The key to check. * @returns {boolean} True if the key exists, false otherwise * @category Query */has(key: string): boolean;}
at present the methods within the IThing are grouped, but methods within the ActualThing are not, though all the documentation details are. Is there a way to have the class typedoc get grouped according to the interface without having to duplicate all the doc details?
The text was updated successfully, but these errors were encountered:
Search terms
@group interface class inherit implements
Question
I have an interface, like so
and a class that implements it
at present the methods within the IThing are grouped, but methods within the ActualThing are not, though all the documentation details are. Is there a way to have the class typedoc get grouped according to the interface without having to duplicate all the doc details?
The text was updated successfully, but these errors were encountered: