Files
verify/frontend/node_modules/next/dist/client/components/not-found-boundary.d.ts
Mohamed Mathar Irfan ed6610d5d8 Initial project upload
2026-07-28 17:57:02 +05:30

10 lines
360 B
TypeScript

import React from 'react';
interface NotFoundBoundaryProps {
notFound?: React.ReactNode;
notFoundStyles?: React.ReactNode;
asNotFound?: boolean;
children: React.ReactNode;
}
export declare function NotFoundBoundary({ notFound, notFoundStyles, asNotFound, children, }: NotFoundBoundaryProps): import("react/jsx-runtime").JSX.Element;
export {};