minishouyin/node_modules/node-thermal-printer/lib/interfaces/interface.js
2025-11-12 11:35:57 +08:00

16 lines
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;