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

Interface BlockWithContext

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

Block info with context (for --context flag)

Source from the content-addressed store, hash-verified

133
134/** Block info with context (for --context flag) */
135interface BlockWithContext extends BlockResult {
136 /** Variables defined by this block */
137 defines?: string[]
138 /** Variables used by this block */
139 uses?: string[]
140 /** Lint issues specific to this block */
141 issues?: Array<{
142 code: string
143 message: string
144 severity: 'error' | 'warning'
145 }>
146}
147
148/** Project context info for --context flag */
149interface ProjectContext {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected