(execution: vscode.NotebookCellExecution, err: string)
| 104 | } |
| 105 | |
| 106 | function writeErr(execution: vscode.NotebookCellExecution, err: string) { |
| 107 | execution.replaceOutput([ |
| 108 | new vscode.NotebookCellOutput([vscode.NotebookCellOutputItem.text(err)]), |
| 109 | ]); |
| 110 | execution.end(false, Date.now()); |
| 111 | } |
| 112 | |
| 113 | const { text, json } = vscode.NotebookCellOutputItem; |
| 114 |