UNPKG

react-native-star-io10

Version:

react-native-star-io10 is a library for supporting application development for Star Micronics devices.

17 lines (14 loc) 336 B
export class MagnificationParameter { private _width: number; private _height: number; get width(): number { return this._width; } get height(): number { return this._height; } constructor(width: number, height: number) { this._width = width; this._height = height; } }