12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
import PortController from "../PortController";
|
|
|
|
export default interface ISerialConnectionState {
|
|
port: string | null;
|
|
portController: PortController | null;
|
|
status: {
|
|
connecting: boolean;
|
|
connected: boolean;
|
|
error: string | null;
|
|
};
|
|
// eslint-disable-next-line semi
|
|
}
|