better-docs
better-docs copied to clipboard
Include interface definition table in namespace page directly
I want the table of interface definition include directly in the namespace page, not in global & not in it's single page
Here my code
// example.d.ts
/**
* Examples
* @category Types Definitions
* @namespace example
*/
export default {}
/**
* @interface IType
* @memberof example
* @property {string} id -
*/
export interface IType {
id: string
}
And it rendered like this now

How can I make it? Maybe some annotations, some code, or other plugin with new setting. Thanks.