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

Function isChartPayload

src/stores/aiChatChartBlocks.ts:114–116  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

112}
113
114export function isChartPayload(value: unknown): value is ChartPayload {
115 return isRecord(value) && value.version === 1 && isRecord(value.spec) && isRecord(value.dataset)
116}
117
118export function extractChartPayloads(toolResult: unknown): ChartPayload[] {
119 if (!isRecord(toolResult)) return []

Callers 1

extractChartPayloadsFunction · 0.70

Calls 1

isRecordFunction · 0.70

Tested by

no test coverage detected