forked from sheetjs/sheetjs
15 lines
465 B
JavaScript
15 lines
465 B
JavaScript
"use strict";
|
|
/*! s.js (C) 2019-present SheetJS -- https://sheetjs.com */
|
|
/* vim: set ts=2: */
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
/// <reference path="../../xlsx.d.ts"/>
|
|
var WorksheetCollection = /** @class */ (function () {
|
|
function WorksheetCollection(wb) {
|
|
this._wb = wb;
|
|
}
|
|
;
|
|
return WorksheetCollection;
|
|
}());
|
|
exports.WorksheetCollection = WorksheetCollection;
|
|
;
|
|
//# sourceMappingURL=WorksheetCollection.js.map
|