/opt/canhelp/node_modules/next/dist/client/components/http-access-fallback
NameSizeModeActions
error-boundary.d.ts7710644editdlrm
error-boundary.js61890644editdlrm
error-boundary.js.map91350644editdlrm
error-fallback.d.ts1580644editdlrm
error-fallback.js28790644editdlrm
error-fallback.js.map21920644editdlrm
http-access-fallback.d.ts9140644editdlrm
http-access-fallback.js23200644editdlrm
http-access-fallback.js.map27620644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/client/components/http-access-fallback/error-boundary.d.ts (771B)
/** * HTTPAccessFallbackBoundary is a boundary that catches errors and renders a * fallback component for HTTP errors. * * It receives the status code, and determine if it should render fallbacks for few HTTP 4xx errors. * * e.g. 404 * 404 represents not found, and the fallback component pair contains the component and its styles. * */ import React from 'react'; interface HTTPAccessFallbackBoundaryProps { notFound?: React.ReactNode; forbidden?: React.ReactNode; unauthorized?: React.ReactNode; children: React.ReactNode; missingSlots?: Set; } export declare function HTTPAccessFallbackBoundary({ notFound, forbidden, unauthorized, children, }: HTTPAccessFallbackBoundaryProps): import("react/jsx-runtime").JSX.Element; export {};