Where is the syntax for TypeScript comments documented?

前端 未结 5 804
执念已碎
执念已碎 2020-12-04 11:30

Is the syntax for TypeScript comments documented anywhere?

And by any chance, does it now support the C# /// system?

5条回答
  •  粉色の甜心
    2020-12-04 12:08

    TypeScript is a strict syntactical superset of JavaScript hence

    • Single line comments start with //
    • Multi-line comments start with /* and end with */

提交回复
热议问题