@tanstack/solid-router
Version:
Modern and scalable routing for Solid applications
9 lines (8 loc) • 364 B
text/typescript
import { NotFoundError } from '@tanstack/router-core';
import type * as Solid from 'solid-js';
export declare function CatchNotFound(props: {
fallback?: (error: NotFoundError) => Solid.JSX.Element;
onCatch?: (error: Error) => void;
children: Solid.JSX.Element;
}): Solid.JSX.Element;
export declare function DefaultGlobalNotFound(): Solid.JSX.Element;