import { DeviceAccessType } from '../DeviceAccessType'; import { IDevicePortsCount } from './IDevicePortsCount'; export interface IDeviceConfiguration { type: string; description: string; deviceAccessTypes: DeviceAccessType; messageAuthFailed: string; messageLoginPrompt: string; messagePageSeparator: string; portsCount: IDevicePortsCount; boards: number[]; }