File size: 201 Bytes
6ce4ca6
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import type { UrdfRobotState } from "$lib/types/robot";

interface Environment {
	robots: {
		[robotId: string]: UrdfRobotState;
	};
}

export const environment: Environment = $state({
	robots: {}
});