| 94 | |
| 95 | /** JSON output result for the cat command */ |
| 96 | export interface CatResult { |
| 97 | success: boolean |
| 98 | path: string |
| 99 | project: Pick<DeepnoteFile['project'], 'name' | 'id'> |
| 100 | notebooks: NotebookSummary[] |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Output cat results as JSON for scripting. |
nothing calls this directly
no outgoing calls
no test coverage detected