kasirpop-star-io10
Version:
kasirpop-star-io10 is a library for supporting application development for Star Micronics devices.
11 lines (10 loc) • 415 B
TypeScript
import { StarPrinterModel } from './StarPrinterModel';
import { StarPrinterEmulation } from './StarPrinterEmulation';
export declare class StarPrinterInformation {
_model: StarPrinterModel;
_emulation: StarPrinterEmulation;
_reserved: Map<string, any | undefined>;
get model(): StarPrinterModel;
get emulation(): StarPrinterEmulation;
get reserved(): ReadonlyMap<string, any | undefined>;
}