Are there any tools for generating documentation for TypeScript source code? Or should I use something generic like NaturalDocs? What would be the recommended style of the block comments / those intended for standalone volume of documentation.
Should I use:
///<foo>bar</foo> MSVS kind of comments?
or
/** @javadoc style comments */
or perhaps
/*
Something like this?
*/
I'm afraid to use ///
because it is used for imports, and I don't want to tread on some other future feature possibly introduced in the similar way - but you never know...
Or is it possible to generate documented JavaScript from TypeScript and then use the JavaScript toolchain?