5 lines
87 B
TypeScript
5 lines
87 B
TypeScript
export interface ContactForm {
|
|
fromEmail: string
|
|
fromName: string
|
|
body: string
|
|
}
|