@kuriousdesign/machine-sdk
Version:
Shared data types and helpers for machine-related repositories
12 lines (11 loc) • 336 B
TypeScript
import { PartState } from "../enums";
export interface PartData {
cncPreOp: [PartState, PartState];
cnc: [PartState, PartState];
cncPostOp: [PartState, PartState];
doneShelf: PartState[];
rawShelf: PartState[];
robot: [PartState, PartState];
washer: [PartState, PartState];
hmiEditingAllowed: boolean;
}