node-thermal-printer
Version:
Print on Epson, Star, Tranca, Daruma and Brother thermal printers with Node.js
16 lines (12 loc) • 351 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;