better-docs icon indicating copy to clipboard operation
better-docs copied to clipboard

Include interface definition table in namespace page directly

Open immortalmice opened this issue 2 years ago • 0 comments

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.

immortalmice avatar Dec 19 '22 03:12 immortalmice