UNPKG

react-native-star-io10

Version:

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

13 lines (10 loc) 241 B
export class LabelParameter { private _enable: boolean = true; get enable(): boolean { return this._enable; } setEnable(enable: boolean): LabelParameter { this._enable = enable; return this; } }