TypeScript/tests/baselines/reference/getEmitOutputDeclarationSingleFile.baseline

27 lines
446 B
Text
Raw Normal View History

2014-09-12 22:20:10 +02:00
EmitOutputStatus : Succeeded
Filename : declSingleFile.js
var x = 5;
var Bar = (function () {
function Bar() {
}
return Bar;
})();
var x1 = "hello world";
var Foo = (function () {
function Foo() {
}
return Foo;
})();
2014-09-12 22:20:10 +02:00
Filename : declSingleFile.d.ts
declare var x: number;
declare class Bar {
x: string;
y: number;
}
declare var x1: string;
declare class Foo {
x: string;
y: number;
}
2014-09-12 22:20:10 +02:00