toes/src/shared/types.ts
2026-01-27 22:05:20 -08:00

16 lines
266 B
TypeScript

export type AppState = 'invalid' | 'stopped' | 'starting' | 'running' | 'stopping'
export type LogLine = {
time: number
text: string
}
export type App = {
name: string
state: AppState
icon?: string
port?: number
started?: number
logs?: LogLine[]
}