Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit af9559b

Browse files
committed
fix(types): move dkim types correctly
1 parent f67dcc2 commit af9559b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/types/emails.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,18 +96,18 @@ interface MailChannelsEmailOptionsBase {
9696
9797
*/
9898
cc?: MailChannelsEmailRecipient[] | MailChannelsEmailRecipient | string[] | string;
99+
dkim?: {
100+
domain: string;
101+
privateKey: string;
102+
selector: string;
103+
};
99104
/**
100105
* The sender of the email. Can be a string or an object with email and name properties.
101106
* @example
102107
* { email: 'email@example.com', name: 'Example' }
103108
* @example
104109
105110
*/
106-
dkim?: {
107-
domain: string;
108-
privateKey: string;
109-
selector: string;
110-
};
111111
from?: MailChannelsEmailRecipient | string;
112112
/**
113113
* The recipient of the email. Can be an array of email addresses or an array of objects with `email` and `name` properties or a single email address string or an object with `email` and `name` properties.

0 commit comments

Comments
 (0)