LeRobot-Arena / src /lib /runes /env.svelte.ts
blanchon's picture
Mostly UI Update
18b0fa5
raw
history blame contribute delete
193 Bytes
import type { RobotState } from "$lib/types/robot";
interface Environment {
robots: {
[robotId: string]: RobotState;
};
}
export const environment: Environment = $state({
robots: {}
});