MCPcopy Create free account
hub / github.com/ChatLab/ChatLab / isChartPayload

Function isChartPayload

apps/cli/src/ai/chat-command.ts:84–86  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

82}
83
84function isChartPayload(value: unknown): value is ChartPayload {
85 return isRecord(value) && value.version === 1 && isRecord(value.spec) && isRecord(value.dataset)
86}
87
88function extractChartPayloads(toolResult: unknown): ChartPayload[] {
89 if (!isRecord(toolResult)) return []

Callers 1

extractChartPayloadsFunction · 0.70

Calls 1

isRecordFunction · 0.70

Tested by

no test coverage detected