@connected/react
Version:
The hassle free way to call your server-side code
8 lines • 316 B
TypeScript
import React from 'react';
import type { ErrorHandlerFunction } from './types.js';
type ErrorHandlerContextType = {
onError: ErrorHandlerFunction;
};
declare const ErrorHandlerContext: React.Context<ErrorHandlerContextType>;
export default ErrorHandlerContext;
//# sourceMappingURL=error-handler-context.d.ts.map