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

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

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