(filePath: string, signal?: AbortSignal)
| 210 | inactivityTimeoutMs: LONG_COMMAND_INACTIVITY_TIMEOUT_MS, |
| 211 | hardTimeoutMs: LONG_COMMAND_HARD_TIMEOUT_MS, |
| 212 | onOutput: gitProgressReporter(progress, step, progressPrefix), |
| 213 | }; |
| 214 | } |
| 215 | |
| 216 | export class RestoredWorkspaceReconciliationError extends Error { |
| 217 | constructor(message: string, options?: ErrorOptions) { |
| 218 | super(message, options); |
| 219 | this.name = 'RestoredWorkspaceReconciliationError'; |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | export function workspaceBootstrapErrorCode( |
| 224 | error: unknown |
| 225 | ): 'WORKSPACE_RECONCILIATION_FAILED' | 'WORKSPACE_SETUP_FAILED' { |
no test coverage detected