| 23 | type UploadFilesByTaskName = Record<string, string>; |
| 24 | |
| 25 | interface JobCompletionCallbacks { |
| 26 | isSettled: () => boolean; |
| 27 | isCancelled: () => boolean; |
| 28 | finishJob: (job: Job) => void; |
| 29 | failJob: (job?: Job) => void; |
| 30 | } |
| 31 | |
| 32 | interface InterruptSignalEmitter { |
| 33 | once(signal: 'SIGINT', listener: () => void): unknown; |
nothing calls this directly
no outgoing calls
no test coverage detected