10 lines
319 B
TypeScript
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 {};
|