Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Documentation Tool for TypeScript like JSDoc [closed]

Is there any tool for Typescript to auto-generate documentation from annotated comments?

I tried using JSDoc with TypeScript. It works upto some extent but they just are not meant to work together.

Any ideas/suggestions?

like image 724
Cute_Ninja Avatar asked Jun 10 '14 19:06

Cute_Ninja


People also ask

Can I use JSDoc for TypeScript?

Compatible with JavaScript and TypeScriptJsDoc is works seamlessly with both JavaScript and TypeScript. The types declared via JsDoc serve as a form of API documentation for your code. JsDoc can also be paired with TypeScript, making your code as descriptive as possible.

Is JSDoc useful?

Conclusion. JSDoc makes coding in JavaScript easier, helping us to code quickly while avoiding obvious errors, just by adding some lines of optional comments in our code.

What is TSDoc?

What is TSDoc? TSDoc is a proposal to standardize the doc comments used in TypeScript code, so that different tools can extract content without getting confused by each other's markup. The TSDoc notation looks pretty familiar: export class Statistics { /** * Returns the average of two numbers.


1 Answers

Or alternatively, somebody created this which might work for you http://functorial.com/typescript-docs/

like image 78
user3566643 Avatar answered Sep 21 '22 15:09

user3566643