ally.ts 419 B

12345678910111213141516171819
  1. /**
  2. * Contract source: https://git.io/JOdiQ
  3. *
  4. * Feel free to let us know via PR, if you find something broken in this contract
  5. * file.
  6. */
  7. declare module '@ioc:Adonis/Addons/Ally' {
  8. interface SocialProviders {
  9. google: {
  10. config: GoogleDriverConfig
  11. implementation: GoogleDriverContract
  12. }
  13. facebook: {
  14. config: FacebookDriverConfig
  15. implementation: FacebookDriverContract
  16. }
  17. }
  18. }