import { InterfaceType } from './InterfaceType'; import { StarIO10Error } from './StarIO10Error'; export class StarIO10ErrorDetail { private _autoSwitchInterfaceOpenErrors: Map | undefined; get autoSwitchInterfaceOpenErrors(): Map | undefined { return this._autoSwitchInterfaceOpenErrors; } constructor(openErrors: Map | undefined = undefined) { this._autoSwitchInterfaceOpenErrors = openErrors; } }