Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
blanchon
/
RobotHub-Frontend
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ac47069
RobotHub-Frontend
/
src
/
lib
/
runes
/
env.svelte.ts
blanchon
Update
6ce4ca6
about 2 months ago
raw
Copy download link
history
blame
Safe
201 Bytes
import
type
{
UrdfRobotState
}
from
"$lib/types/robot"
;
interface
Environment
{
robots
: {
[
robotId
:
string
]:
UrdfRobotState
;
};
}
export
const
environment
:
Environment
= $state({
robots
: {}
});