Files
2026-02-13 22:02:30 +01:00

9 lines
318 B
TypeScript

import type { NitroErrorHandler } from "nitropack/types";
export declare function defineNitroErrorHandler(handler: NitroErrorHandler): NitroErrorHandler;
export type InternalHandlerResponse = {
status: number;
statusText: string;
headers: Record<string, string>;
body: string | Record<string, any>;
};