| 34 | } |
| 35 | |
| 36 | export interface CatOptions { |
| 37 | output?: OutputFormat |
| 38 | notebook?: string |
| 39 | type?: FilterableBlockType |
| 40 | tree?: boolean |
| 41 | } |
| 42 | |
| 43 | export function createCatAction(_program: Command): (path: string, options: CatOptions) => Promise<void> { |
| 44 | return async (path, options) => { |
nothing calls this directly
no outgoing calls
no test coverage detected