(v: string | undefined)
| 60 | const REMOTE_TASK_TYPES = ['remote-agent', 'ultraplan', 'ultrareview', 'autofix-pr', 'background-pr'] as const; |
| 61 | export type RemoteTaskType = (typeof REMOTE_TASK_TYPES)[number]; |
| 62 | function isRemoteTaskType(v: string | undefined): v is RemoteTaskType { |
| 63 | return (REMOTE_TASK_TYPES as readonly string[]).includes(v ?? ''); |
| 64 | } |
| 65 | export type AutofixPrRemoteTaskMetadata = { |
| 66 | owner: string; |
| 67 | repo: string; |
no outgoing calls
no test coverage detected