UNPKG

react-native-esc-pos-printer

Version:

An unofficial React Native library for printing on an EPSON TM printer with the Epson ePOS SDK for iOS and Epson ePOS SDK for Android

15 lines (14 loc) 325 B
"use strict"; export class PrinterError extends Error { message = ''; name = 'PrinterError'; timestamp = 0; status = ''; methodName = ''; constructor(params) { super(params.message); Object.assign(this, params); } } PrinterError.prototype.name = 'PrinterError'; //# sourceMappingURL=PrinterError.js.map