MCPcopy Create free account
hub / github.com/deepnote/deepnote / BlockResult

Interface BlockResult

packages/cli/src/commands/run.ts:107–115  ·  view source on GitHub ↗

Result of a single block execution for JSON output

Source from the content-addressed store, hash-verified

105
106/** Result of a single block execution for JSON output */
107interface BlockResult {
108 id: string
109 type: string
110 label: string
111 success: boolean
112 durationMs: number
113 outputs: IOutput[]
114 error?: string | undefined
115}
116
117/** Diagnosis info for a failed block */
118interface BlockDiagnosis {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected