Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
blanchon
/
LeRobot-Arena
like
4
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
de6f5a0
LeRobot-Arena
/
src
/
lib
/
runes
/
env.svelte.ts
blanchon
squash: initial commit
3aea7c6
4 months ago
raw
Copy download link
history
blame
Safe
206 Bytes
import
type
{
RobotState
}
from
"$lib/types/robot"
;
interface
Environment
{
robots
: {
[
robotId
:
string
]:
RobotState
;
}
}
export
const
environment
:
Environment
= $state({
robots
: {}
});