(error: Error)
| 44 | export const executableBlockTypeSet: ReadonlySet<string> = new Set(executableBlockTypes) |
| 45 | |
| 46 | function createErrorOutput(error: Error): IOutput { |
| 47 | return { |
| 48 | output_type: 'error', |
| 49 | ename: error.name || 'Error', |
| 50 | evalue: error.message, |
| 51 | traceback: [], |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | export interface ExecutionOptions { |
| 56 | /** Run only the specified notebook (by name) */ |
no outgoing calls
no test coverage detected