| 4 | import { buildDagFromBlocks } from './dag-builder' |
| 5 | |
| 6 | export class DagError extends Error { |
| 7 | constructor(message: string) { |
| 8 | super(message) |
| 9 | this.name = 'DagError' |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | export type DownstreamBlocksStatus = 'success' | 'missing-deps' | 'fatal' |
| 14 | export type UpstreamBlocksStatus = 'success' | 'missing-deps' | 'fatal' |
nothing calls this directly
no outgoing calls
no test coverage detected