|
|
@ -20,8 +20,8 @@ declare namespace System { |
|
|
|
initComplete: boolean |
|
|
|
selfTest: boolean |
|
|
|
emergencyStop: boolean |
|
|
|
currentUser: User.User | null |
|
|
|
currentTasks: Task.Task[] | null |
|
|
|
currentUser?: User.User | null |
|
|
|
currentTasks?: Task.Task[] | null |
|
|
|
door: { |
|
|
|
open: boolean |
|
|
|
} |
|
|
@ -40,13 +40,14 @@ declare namespace System { |
|
|
|
} |
|
|
|
interface Tray { |
|
|
|
uuid: string |
|
|
|
heatModuleId: 'heat_module_01' | 'heat_module_02' | 'heat_module_03' | 'heat_module_04' | 'heat_module_05' | 'heat_module_06' |
|
|
|
inSolutionArea: boolean |
|
|
|
heatModuleId?: 'heat_module_01' | 'heat_module_02' | 'heat_module_03' | 'heat_module_04' | 'heat_module_05' | 'heat_module_06' |
|
|
|
inSolutionModule: boolean |
|
|
|
inHeatModule: boolean |
|
|
|
tubes: Tubes[] |
|
|
|
crafts?: { |
|
|
|
state: 'READY' | 'RUNNING' | 'PAUSED' | 'STOPPED' | 'ERROR' | 'FINISHED' |
|
|
|
craft?: CraftTypes.Craft |
|
|
|
ores?: any |
|
|
|
currentIndex?: number |
|
|
|
} |
|
|
|
} |
|
|
@ -61,13 +62,18 @@ declare namespace System { |
|
|
|
trayStatus: 0 | 1 |
|
|
|
heatingType: 'stop' | 'warm_up' | 'thermostatic' | 'constant' |
|
|
|
fanOpen: boolean |
|
|
|
heating?: boolean |
|
|
|
capExist: boolean |
|
|
|
temperature: number |
|
|
|
targetTemperature: number |
|
|
|
heatTemperature?: number |
|
|
|
startHeatTime?: number |
|
|
|
targetTemperature?: number |
|
|
|
targetTime?: number |
|
|
|
} |
|
|
|
interface SolutionContainer { |
|
|
|
id: number |
|
|
|
containerCode?: string |
|
|
|
filledSolution?: boolean |
|
|
|
type: 'solution' | 'neutralization' |
|
|
|
empty: boolean |
|
|
|
full: boolean |
|
|
|