Type Alias: SupervisorRuntimeSnapshot
Makaio Framework / contracts / SupervisorRuntimeSnapshot
Type Alias: SupervisorRuntimeSnapshot
Section titled “Type Alias: SupervisorRuntimeSnapshot”SupervisorRuntimeSnapshot =
z.infer<typeofSupervisorRuntimeSnapshotSchema>
Defined in: ../../../packages/contracts/src/native-session-supervisor/schemas.ts:226
Type Composition
Section titled “Type Composition”SupervisorRuntimeSnapshotz.infer<typeof SupervisorRuntimeSnapshotSchema>typeof SupervisorRuntimeSnapshotSchema
Resolved Shape
Section titled “Resolved Shape”type SupervisorRuntimeSnapshot = { supervisorSessionId: string; clientId: string; pid: number | null; status: 'unknown' | 'running' | 'stopped' | 'exited'; cwd: string; startedAt: number; sessionId?: string | undefined; adapterSessionId?: string | undefined; stoppedAt?: number | undefined;};