/**
* The application constructor.
* @param param - The initial parameters.
* @param param.container - The dom element to render scene.
* @param param.background? - The background.
*/
class App {
constructor(param: {
container: HTMLElement;
background?: number | string | Number[];
}) {}
}
Now the param not ok:
# Class: App
The application constructor.
## Param
The initial parameters.
## Param
The dom element to render scene.
## Param
The background.
# Class: App
The application constructor.
## Param: param
The initial parameters.
## Param: param.container
The dom element to render scene.
## Param: param.background
The background.
What package is the bug related to?
typedoc-plugin-markdown
Describe the issue
This is the
test.ts
code:Now the param not ok:
But trans to html is ok:
TypeDoc configuration
Expected behavior