12 lines
363 B
TypeScript
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;
|