UNPKG

@kuriousdesign/machine-sdk

Version:

Shared data types and helpers for machine-related repositories

22 lines (18 loc) 430 B
import { RobPositionData } from ".."; export interface ShelfPartPositionData { index: number; colNum: number; posLetter: number; offest: RobPositionData; } export interface RackShelfData { nextPart: ShelfPartPositionData; lastPart: ShelfPartPositionData; isEmpty: boolean; isFull: boolean; isEditMode: boolean; } export interface RackData { raw: RackShelfData; done: RackShelfData; }