UNPKG

wcslight

Version:
13 lines 254 B
export class FITS { constructor(header, data) { this._header = header; this._data = data; } get header() { return this._header; } get data() { return this._data; } } //# sourceMappingURL=FITS.js.map