Spaces:
Build error
Build error
File size: 201 Bytes
ebcc4b8 |
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: {}
});
|