output.mjs 259 B

1234567891011121314151617
  1. System.register([], function (_export, _context) {
  2. "use strict";
  3. return {
  4. setters: [],
  5. execute: function () {
  6. const [foo, bar, ...baz] = [];
  7. _export("foo", foo);
  8. _export("bar", bar);
  9. _export("baz", baz);
  10. }
  11. };
  12. });