| 32 | * Block output information stored in a snapshot |
| 33 | */ |
| 34 | export 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 |
nothing calls this directly
no outgoing calls
no test coverage detected