Open
Description
openedon Sep 5, 2018
// Filename: mod.js
export const Ns = function () { }
// @Filename: use.js
import { Ns } from './mod'
Ns.expando = 1
Expected behavior:
No error, and Ns has property 'expando'
Actual behavior:
Error, 'expando' not found on 'Ns'.
This merge shouldn't be allowed in Typescript, but it will work in Javascript, so it should be allowed there.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment