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

Interface BlockOutput

packages/convert/src/snapshot/types.ts:34–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32 * Block output information stored in a snapshot
33 */
34export interface BlockOutput {
35 /** Block ID */
36 id: string
37 /** Content hash of the source when output was generated */
38 contentHash?: string
39 /** Execution count */
40 executionCount?: number | null
41 /** When execution started */
42 executionStartedAt?: string
43 /** When execution finished */
44 executionFinishedAt?: string
45 /** Output data */
46 outputs?: unknown[]
47}
48
49/**
50 * Information about a snapshot file

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected