12 lines
217 B
JavaScript
12 lines
217 B
JavaScript
System.register(["foo"], function (_export) {
|
|
"use strict";
|
|
|
|
var foo, xyz;
|
|
return {
|
|
setters: [function (_foo) {
|
|
foo = _foo["default"];
|
|
xyz = _foo.baz;
|
|
}],
|
|
execute: function () {}
|
|
};
|
|
}); |