gebeya-dala-error-fixer
Version:
Automatic runtime error detection and fix suggestions for Next.js applications with config-based setup
13 lines (12 loc) • 404 B
TypeScript
import React from 'react';
import { ErrorInfo, ErrorSuggestion } from './ErrorDetector';
interface ErrorModalProps {
isOpen: boolean;
error: ErrorInfo | null;
suggestion: ErrorSuggestion | null;
onClose: () => void;
onFixIt?: (error: ErrorInfo, suggestion: ErrorSuggestion) => void;
fixItEnabled?: boolean;
}
export declare const ErrorModal: React.FC<ErrorModalProps>;
export {};