import { StarPrinterModel } from './StarPrinterModel'; import { StarPrinterEmulation } from './StarPrinterEmulation'; export class StarPrinterInformation { _model: StarPrinterModel = StarPrinterModel.Unknown; _emulation: StarPrinterEmulation = StarPrinterEmulation.Unknown; _reserved: Map = new Map() get model(): StarPrinterModel { return this._model; } get emulation(): StarPrinterEmulation { return this._emulation; } get reserved(): ReadonlyMap { return this._reserved; } }