@kuriousdesign/machine-sdk
Version:
Shared data types and helpers for machine-related repositories
15 lines (14 loc) • 330 B
TypeScript
import { ComponentAnimation } from ".";
export interface UserData {
activeUser: number;
hmiLoginBtn: ComponentAnimation;
hmiLogoutBtn: ComponentAnimation;
}
export interface FaultCodeData {
deviceId: number;
code: number;
}
export interface SystemFaultData {
list: FaultCodeData[];
present: boolean;
}