mirror of
https://github.com/ArthurDanjou/artdanj-api.git
synced 2026-01-14 20:19:26 +01:00
24 lines
492 B
TypeScript
Executable File
24 lines
492 B
TypeScript
Executable File
/**
|
|
* 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
|
|
}
|
|
google: {
|
|
config: GoogleDriverConfig
|
|
implementation: GoogleDriverContract
|
|
}
|
|
twitter: {
|
|
config: TwitterDriverConfig
|
|
implementation: TwitterDriverContract
|
|
}
|
|
}
|
|
}
|