Tools and guide for documenting TypeScript code?

后端 未结 6 522
一向
一向 2021-01-30 20:00

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

6条回答
  •  独厮守ぢ
    2021-01-30 20:32

    You can use this kind of commenting above your function.

    /** 
    * Comment goes here
    */
    

    And next when you will hit your method it will show up with documentation.

提交回复
热议问题