You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RELOG/web/src/components/CaseBuilder/CircularData.ts

21 lines
295 B

export interface CircularPlant {
id: string;
x: number;
y: number;
}
export interface CircularProduct {
id: string;
x: number;
y: number;
}
export interface CircularData {
plants: Record<string, CircularPlant>;
products: Record<string, CircularProduct>;
}