MCPcopy Create free account
hub / github.com/codeaashu/claude-code / _temp

Function _temp

src/components/MessageRow.tsx:293–295  ·  view source on GitHub ↗

* Checks if a message is "streaming" - i.e., its content may still be changing. * Exported for testing.

(c)

Source from the content-addressed store, hash-verified

291 * Exported for testing.
292 */
293function _temp(c) {
294 return c.type === "text";
295}
296export function isMessageStreaming(msg: RenderableMessage, streamingToolUseIDs: Set<string>): boolean {
297 if (msg.type === 'grouped_tool_use') {
298 return msg.messages.some(m => {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected