1234567891011121314151617 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- var Workbook = function Workbook() {
- _classCallCheck(this, Workbook);
- this.SheetNames = [];
- this.Sheets = {};
- };
- exports.default = Workbook;
- //# sourceMappingURL=workbook.js.map
|