dispatcher/types/devices/Device.js
2021-05-17 23:50:25 +00:00

11 lines
No EOL
235 B
JavaScript

class PagerDevice {
constructor () {
this.duplex = false
this.supportBOSkrypt = false
this.name = "_base"
}
async formatTX(msg) { }
async tryReceive(data, connector) { }
RandID() { }
}
module.exports = PagerDevice