TypeScript/tests/baselines/reference/exportAndImport-es5-amd.types
2015-04-17 15:53:36 -07:00

19 lines
303 B
Plaintext

=== tests/cases/conformance/es6/modules/m1.ts ===
export default function f1() {
>f1 : () => void
}
=== tests/cases/conformance/es6/modules/m2.ts ===
import f1 from "./m1";
>f1 : () => void
export default function f2() {
>f2 : () => void
f1();
>f1() : void
>f1 : () => void
}