LeRobot-Arena / src /lib /runes /env.svelte.ts
blanchon's picture
squash: initial commit
3aea7c6
raw
history blame
206 Bytes
import type { RobotState } from "$lib/types/robot";
interface Environment {
robots: {
[robotId: string]: RobotState;
}
}
export const environment: Environment = $state({
robots: {}
});