I created a generic interface called Box and added a @typeParam document property <T> for this class.
Nevertheless, after I generated the markdown document for this interface, there was no description regarding the T, which is very strange.
/**
* Box interface.
* @typeParam T - Box type
* @public
*/
export interface Box<T> {
type: T;
}
When you open the Stackblize link, just run npm run dev, it will call api-extractor and api-documenter automatically.
Here is an example hosted by StackBlize
I created a generic interface called
Box
and added a@typeParam
document property<T>
for this class. Nevertheless, after I generated the markdown document for this interface, there was no description regarding theT
, which is very strange.When you open the
Stackblize
link, just runnpm run dev
, it will callapi-extractor
andapi-documenter
automatically.