( status: CopilotAsyncToolStatus | string | null | undefined )
| 92 | } |
| 93 | |
| 94 | export function isDeliveredAsyncStatus( |
| 95 | status: CopilotAsyncToolStatus | string | null | undefined |
| 96 | ): status is typeof ASYNC_TOOL_STATUS.delivered { |
| 97 | return status === ASYNC_TOOL_STATUS.delivered |
| 98 | } |
| 99 | |
| 100 | export function isAsyncTerminalConfirmationStatus( |
| 101 | status: string | null | undefined |
no outgoing calls
no test coverage detected