/** A contact form submission. */ export interface ContactForm { /** @email */ email: string /** The submitter's name */ name: string /** The body of the contact form submission. */ message: string }