Working on v3

This commit is contained in:
2021-05-20 22:30:44 +02:00
parent 0d9ff1c20d
commit 66b4709011
12 changed files with 4849 additions and 1 deletions

23
contracts/ally.ts Normal file
View File

@@ -0,0 +1,23 @@
/**
* Contract source: https://git.io/JOdiQ
*
* Feel free to let us know via PR, if you find something broken in this contract
* file.
*/
declare module '@ioc:Adonis/Addons/Ally' {
interface SocialProviders {
github: {
config: GithubDriverConfig
implementation: GithubDriverContract
}
twitter: {
config: TwitterDriverConfig
implementation: TwitterDriverContract
}
google: {
config: GoogleDriverConfig
implementation: GoogleDriverContract
}
}
}