MCPcopy Create free account
hub / github.com/anomalyco/opencode / isLinkCell

Function isLinkCell

packages/console/support/src/component/result.tsx:112–119  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

110}
111
112function isLinkCell(value: unknown): value is { __link: string; label: string } {
113 return (
114 typeof value === "object" &&
115 value !== null &&
116 "__link" in value &&
117 typeof (value as { __link: unknown }).__link === "string"
118 )
119}

Callers 1

renderCellFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected