TypeScript/tests/baselines/reference/commentOnInterface1.js

29 lines
427 B
TypeScript

//// [tests/cases/compiler/commentOnInterface1.ts] ////
//// [a.ts]
/*!=================
Keep this pinned
=================
*/
/*! Don't keep this pinned comment */
interface I {
}
// Don't keep this comment.
interface I2 {
}
//// [b.ts]
///<reference path='a.ts'/>
interface I3 {
}
//// [a.js]
/*!=================
Keep this pinned
=================
*/
//// [b.js]
///<reference path='a.ts'/>