TypeScript/tests/cases/conformance/es6/modules/exportsAndImportsWithUnderscores1.ts
2015-12-21 16:23:51 -08:00

15 lines
213 B
TypeScript

//@module: commonjs
//@target: ES3
// @filename: m1.ts
var R: any
export default R = {
"__": 20,
"_": 10
"___": 30
}
// @filename: m2.ts
import R from "./m1";
const { __, _, ___ } = R;