blanchon's picture
Update
6ce4ca6
raw
history blame contribute delete
201 Bytes
import type { UrdfRobotState } from "$lib/types/robot";
interface Environment {
robots: {
[robotId: string]: UrdfRobotState;
};
}
export const environment: Environment = $state({
robots: {}
});