| 14 | export type UpstreamBlocksStatus = 'success' | 'missing-deps' | 'fatal' |
| 15 | |
| 16 | export interface GetBlocksWithDepsSuccessResult { |
| 17 | status: 'success' | 'missing-deps' |
| 18 | blocksToExecuteWithDeps: DeepnoteBlock[] |
| 19 | newlyComputedBlocksContentDeps: BlockContentDepsWithOrder[] |
| 20 | } |
| 21 | |
| 22 | export type GetUpstreamBlocksResult = |
| 23 | | GetBlocksWithDepsSuccessResult |
nothing calls this directly
no outgoing calls
no test coverage detected