NeahNew/node_modules/next/dist/client/components/react-dev-overlay/app/app-dev-overlay.d.ts
2025-05-03 14:17:46 +02:00

8 lines
347 B
TypeScript

import type { OverlayState } from '../shared';
import type { GlobalErrorComponent } from '../../error-boundary';
export declare function AppDevOverlay({ state, globalError, children, }: {
state: OverlayState;
globalError: [GlobalErrorComponent, React.ReactNode];
children: React.ReactNode;
}): import("react/jsx-runtime").JSX.Element;