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.ts16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ts/types/contact.ts b/src/ts/types/contact.ts
index c0f23e0..ef6847a 100644
--- a/src/ts/types/contact.ts
+++ b/src/ts/types/contact.ts
@@ -1,3 +1,10 @@
+export type ContactData = {
+ body: string;
+ mutationId: string;
+ replyTo: string;
+ subject: string;
+};
+
export type SentEmail = {
clientMutationId: string;
message: string;
@@ -7,13 +14,6 @@ export type SentEmail = {
to: string;
};
-export type SentEmailResponse = {
+export type SendEmail = {
sendEmail: SentEmail;
};
-
-export type SendMailReturn = (
- subject: string,
- body: string,
- replyTo: string,
- mutationId: string
-) => Promise<SentEmail>;