UNPKG

raw-modem

Version:

A library to send raw command to a modem and received the response

18 lines (17 loc) 336 B
"use strict"; /** * Hold information to modem opening configuration */ class ModemOptions { constructor() { /** * Automically opened flag */ this.autoOpen = false; /** * Command timeout */ this.commandTimeout = 5000; } } exports.ModemOptions = ModemOptions;