MCPcopy Index your code
hub / github.com/deepnote/deepnote / isExecuteResult

Function isExecuteResult

packages/cli/src/output-renderer.ts:26–28  ·  view source on GitHub ↗
(output: IOutput)

Source from the content-addressed store, hash-verified

24}
25
26function isExecuteResult(output: IOutput): output is IExecuteResult {
27 return output.output_type === 'execute_result'
28}
29
30function isError(output: IOutput): output is IError {
31 return output.output_type === 'error'

Callers 1

renderOutputFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected