aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/types/contact.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/ts/types/contact.ts')
-rw-r--r--src/ts/types/contact.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/ts/types/contact.ts b/src/ts/types/contact.ts
deleted file mode 100644
index ef6847a..0000000
--- a/src/ts/types/contact.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-export type ContactData = {
- body: string;
- mutationId: string;
- replyTo: string;
- subject: string;
-};
-
-export type SentEmail = {
- clientMutationId: string;
- message: string;
- origin: string;
- replyTo: string;
- sent: boolean;
- to: string;
-};
-
-export type SendEmail = {
- sendEmail: SentEmail;
-};