I'm looking for a way to support multiple languages by writing typescript comments like this:
/**
* @en english comment
* @fr commentaire français
*
*/
export class MyClass {}
For example, is there an idea that one of the comments @en and @fr is selected and output? I tried to find typedoc, but there seems to be no such function.