securityos/node_modules/next/dist/client/components/not-found-boundary.d.ts

10 lines
338 B
TypeScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
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): React.JSX.Element;
export {};