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) 277 B
export class PositionParameter { private _x: number; private _y: number; get x(): number { return this._x; } get y(): number { return this._y; } constructor(x: number, y: number) { this._x = x; this._y = y; } }