TypeScript/tests/baselines/reference/systemExportAssignment.js
2016-01-29 18:42:23 +02:00

21 lines
409 B
TypeScript

//// [tests/cases/compiler/systemExportAssignment.ts] ////
//// [a.d.ts]
declare var a: number;
export = a; // OK, in ambient context
//// [b.ts]
import * as a from "a";
//// [b.js]
System.register([], function(exports_1, context_1) {
"use strict";
var __moduleName = context_1 && context_1.id;
return {
setters:[],
execute: function() {
}
}
});