TypeScript/tests/cases/compiler/interfaceDeclaration2.ts
2014-07-12 17:30:19 -07:00

13 lines
144 B
TypeScript

interface I1 { }
module I1 { }
interface I2 { }
class I2 { }
interface I3 { }
function I3() { }
interface I4 { }
var I4:number;