forked from sheetjs/sheetjs
14 lines
298 B
JavaScript
Generated
14 lines
298 B
JavaScript
Generated
/*! s.js (C) 2019-present SheetJS -- https://sheetjs.com */
|
|
/* vim: set ts=2: */
|
|
/// <reference path="../../xlsx.d.ts"/>
|
|
export class DefinedName {
|
|
constructor(name) {
|
|
this._name = name;
|
|
}
|
|
;
|
|
get raw() { return this._name; }
|
|
;
|
|
}
|
|
;
|
|
//# sourceMappingURL=DefinedName.js.map
|