Recipe-app main

This commit is contained in:
2026-04-09 09:14:39 +02:00
commit 962f4e4be5
10015 changed files with 2445177 additions and 0 deletions
@@ -0,0 +1,8 @@
import { type HTTPAccessFallbackError } from './http-access-fallback/http-access-fallback';
import { type RedirectError } from './redirect-error';
/**
* Returns true if the error is a navigation signal error. These errors are
* thrown by user code to perform navigation operations and interrupt the React
* render.
*/
export declare function isNextRouterError(error: unknown): error is RedirectError | HTTPAccessFallbackError;