import type { ListenerType } from './ListenerType'; export interface SerialportParamsType { onError?: ListenerType; onReadData?: ListenerType; onConnected?: ListenerType; onDisconnected?: ListenerType; onDeviceAttached?: ListenerType; onDeviceDetached?: ListenerType; }