MCPcopy Index your code
hub / github.com/codeaashu/claude-code / isInProcessTeammateTask

Function isInProcessTeammateTask

src/tasks/InProcessTeammateTask/types.ts:78–87  ·  view source on GitHub ↗
(
  task: unknown,
)

Source from the content-addressed store, hash-verified

76}
77
78export function isInProcessTeammateTask(
79 task: unknown,
80): task is InProcessTeammateTaskState {
81 return (
82 typeof task === 'object' &&
83 task !== null &&
84 'type' in task &&
85 task.type === 'in_process_teammate'
86 )
87}
88
89/**
90 * Cap on the number of messages kept in task.messages (the AppState UI mirror).

Callers 11

SpinnerWithVerbInnerFunction · 0.85
TaskListV2Function · 0.85
clearConversationFunction · 0.85
getViewedTeammateTaskFunction · 0.85
REPLFunction · 0.85
useInboxPollerFunction · 0.85
handleKeyDownFunction · 0.85
useTeammateViewAutoExitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected