* feat: add clipboard copy icon to the x-term-component * feat: start device poll after firmware upgrade * feat: remove the OK button from the firmware upgrade page * feat: read the firmware after firmware upgrade * fix: scrolling of the x-term-component * feat: refresh the firmware version after recovery device * fix: remove the scrollbar styling * fix: stay on device firmware upgrade screen
7 lines
136 B
TypeScript
7 lines
136 B
TypeScript
import { HardwareModules } from 'uhk-common';
|
|
|
|
export interface FirmwareUpgradeError {
|
|
error: any;
|
|
modules?: HardwareModules;
|
|
}
|