bunext/dist/functions/server/web-pages/grab-page-error-component.d.ts

10 lines
319 B
TypeScript

import type { BunxRouteParams, GrabPageComponentRes } from "../../../types";
type Params = {
error?: any;
routeParams?: BunxRouteParams;
is404?: boolean;
url?: URL;
};
export default function grabPageErrorComponent({ error, routeParams, is404, url, }: Params): Promise<GrabPageComponentRes>;
export {};