datasquirel/package-shared/functions/backend/serverError.d.ts

15 lines
413 B
TypeScript
Raw Normal View History

2024-12-06 10:35:59 +00:00
declare function _exports({ user, message, component, noMail, req, }: {
user?: {
id?: number | string;
first_name?: string;
last_name?: string;
email?: string;
} & any;
message: string;
component?: string;
noMail?: boolean;
req?: import("next").NextApiRequest & IncomingMessage;
}): Promise<void>;
export = _exports;
import { IncomingMessage } from "http";