SoftwareBrothers / better-docs

Beautiful toolbox for jsdoc generated documentation - with 'typescript', `category` and `component` plugins
MIT License
861 stars 127 forks source link

Include interface definition table in namespace page directly #237

Open immortalmice opened 1 year ago

immortalmice commented 1 year ago

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 螢幕擷取畫面 2022-12-19 110944 螢幕擷取畫面 2022-12-19 111006

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