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

13 lines
309 B
TypeScript
Raw Normal View History

2024-11-08 15:44:31 +00:00
declare function _exports({ user, message, component, noMail, }: {
user?: {
id?: number | string;
first_name?: string;
last_name?: string;
email?: string;
} & any;
message: string;
component?: string;
noMail?: boolean;
}): Promise<void>;
export = _exports;