13 lines
343 B
TypeScript
13 lines
343 B
TypeScript
import type { ContactInquiry, RepairInquiry, SmtpSettings } from "@/lib/admin/types";
|
|
|
|
export type PublicSmtpSettings = Omit<SmtpSettings, "password"> & {
|
|
hasPassword: boolean;
|
|
};
|
|
|
|
export type MailSendResult = {
|
|
ok: boolean;
|
|
error?: string;
|
|
};
|
|
|
|
export type ContactMailInput = ContactInquiry;
|
|
export type RepairMailInput = RepairInquiry;
|