2021-12-03 19:55:27 +03:00
|
|
|
var Bar;
|
|
|
|
(function(Bar1) {
|
2021-01-25 15:15:42 +03:00
|
|
|
function foo() {
|
|
|
|
console.log("foo");
|
|
|
|
}
|
2021-12-03 19:55:27 +03:00
|
|
|
Bar1.foo = foo;
|
2022-01-02 23:54:58 +03:00
|
|
|
})(Bar || (Bar = {}));
|
2021-12-03 19:55:27 +03:00
|
|
|
export { Bar as Bar };
|