TypeScript/tests/baselines/reference/commentsPropertySignature1.js

13 lines
160 B
TypeScript

//// [commentsPropertySignature1.ts]
var a = {
/** own x*/
x: 0
};
//// [commentsPropertySignature1.js]
var a = {
/** own x*/
x: 0
};