TypeScript Version:
1.8.0-1.8.7
Code
import {Key} from 'types'; // Key is an interface
const Key = { test() {} };
Key.test();
export default Key;
Expected behavior:
Key.test();
exports.default = Key;
Actual behavior:
types_1.Key.test();
exports.default = types_1.Key;
TypeScript Version:
1.8.0-1.8.7
Code
Expected behavior:
Actual behavior: