interface MonitorAlertEmailProps { name?: string; type: "alert" | "degraded" | "recovery"; url?: string; status?: string; latency?: string; region?: string; timestamp?: string; message?: string; } export function monitorAlertEmail(props: MonitorAlertEmailProps) { return `

Your monitor is ${props.type}

`; }