UNPKG

raw-modem

Version:

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

22 lines (21 loc) 386 B
/** * Hold information to modem opening configuration */ export declare class ModemOptions { /** * The device name, ex: /dev/ttyUSB0 */ deviceName: string; /** * The baud rate, ex: 115200 */ baudRate: number; /** * Automically opened flag */ autoOpen: boolean; /** * Command timeout */ commandTimeout: number; }