Finished the States

This commit is contained in:
2021-04-06 09:59:38 +02:00
parent b64158732c
commit 0727e912af
20 changed files with 949 additions and 860 deletions

14
contracts/mail.ts Normal file
View File

@@ -0,0 +1,14 @@
/**
* Contract source: https://git.io/JvgAT
*
* Feel free to let us know via PR, if you find something broken in this contract
* file.
*/
declare module '@ioc:Adonis/Addons/Mail' {
import { MailDrivers } from '@ioc:Adonis/Addons/Mail'
interface MailersList {
smtp: MailDrivers['smtp'],
}
}