10 lines
304 B
TypeScript
Executable file
10 lines
304 B
TypeScript
Executable file
import React from 'react';
|
|
export type GlobalErrorComponent = React.ComponentType<{
|
|
error: any;
|
|
reset: () => void;
|
|
unstable_retry: () => void;
|
|
}>;
|
|
declare function DefaultGlobalError({ error }: {
|
|
error: any;
|
|
}): import("react/jsx-runtime").JSX.Element;
|
|
export default DefaultGlobalError;
|