File size: 193 Bytes
3aea7c6
 
 
18b0fa5
 
 
3aea7c6
 
 
18b0fa5
 
1
2
3
4
5
6
7
8
9
10
11
12
import type { RobotState } from "$lib/types/robot";

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

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