Files
oh-my-opencode/dist/hooks/delegate-task-retry/patterns.d.ts
T
2026-03-14 04:56:50 +00:00

12 lines
363 B
TypeScript

export interface DelegateTaskErrorPattern {
pattern: string;
errorType: string;
fixHint: string;
}
export declare const DELEGATE_TASK_ERROR_PATTERNS: DelegateTaskErrorPattern[];
export interface DetectedError {
errorType: string;
originalOutput: string;
}
export declare function detectDelegateTaskError(output: string): DetectedError | null;