gebeya-dala-error-fixer
Version:
Automatic runtime error detection and fix suggestions for Next.js applications with config-based setup
10 lines (9 loc) • 313 B
TypeScript
import React, { ReactNode } from 'react';
interface ErrorFixerProviderProps {
children: ReactNode;
enabled?: boolean;
autoShow?: boolean;
position?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
}
export declare const ErrorFixerProvider: React.FC<ErrorFixerProviderProps>;
export {};