workbook.js 421 B

1234567891011121314151617
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  6. var Workbook = function Workbook() {
  7. _classCallCheck(this, Workbook);
  8. this.SheetNames = [];
  9. this.Sheets = {};
  10. };
  11. exports.default = Workbook;
  12. //# sourceMappingURL=workbook.js.map