TypeScript/tests/cases/compiler/commentOnInterface1.ts

18 lines
265 B
TypeScript
Raw Normal View History

//@filename: a.ts
/*!=================
Keep this pinned
=================
*/
/*! Don't keep this pinned comment */
2014-07-13 01:04:16 +02:00
interface I {
}
// Don't keep this comment.
interface I2 {
}
//@filename: b.ts
///<reference path='a.ts'/>
interface I3 {
2014-07-13 01:04:16 +02:00
}