flow2schema/tests/samples/shadowing.js

17 lines
183 B
JavaScript
Raw Normal View History

2017-11-06 02:13:41 +03:00
type X = {
x: Buffer,
};
(function () {
interface Buffer {}
type Y = {
y: Buffer,
};
2017-11-09 12:10:21 +03:00
// TODO: replace with commonjs.
export {Y};
2017-11-06 02:13:41 +03:00
})();
2017-11-09 12:10:21 +03:00
export {X};