| 4 | import type { JobRunner } from './types.js'; |
| 5 | |
| 6 | interface PdfOperationDefinition { |
| 7 | command: string; |
| 8 | aliases: string[]; |
| 9 | describe: string; |
| 10 | fileDescription: string; |
| 11 | operation: string; |
| 12 | examples: string[]; |
| 13 | } |
| 14 | |
| 15 | const PDF_OPERATION_DEFINITIONS: PdfOperationDefinition[] = [ |
| 16 | { |
nothing calls this directly
no outgoing calls
no test coverage detected