node-thermal-printer
Version:
Print on Epson, Star, Tranca, Daruma, Brother and Custom thermal printers with Node.js
16 lines (12 loc) • 336 B
JavaScript
class Interface {
getPrinterName () {
throw new Error("'getPrinterName' function not implemented.");
}
async isPrinterConnected () {
throw new Error("'isPrinterConnected' function not implemented.");
}
async execute () {
throw new Error("'execute' function not implemented.");
}
}
module.exports = Interface;