mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
10 lines
197 B
TypeScript
10 lines
197 B
TypeScript
export const AGENT_LIFECYCLE_STATUSES = [
|
|
"initializing",
|
|
"idle",
|
|
"running",
|
|
"error",
|
|
"closed",
|
|
] as const;
|
|
|
|
export type AgentLifecycleStatus = (typeof AGENT_LIFECYCLE_STATUSES)[number];
|