oauth-providers.ts 268 B

12345678910111213
  1. export type OAuthProvider = {
  2. name: string
  3. descriptionKey: string
  4. descriptionOptions: {
  5. appName: string
  6. link?: string
  7. service?: string
  8. }
  9. hideWhenNotLinked?: boolean
  10. linkPath: string
  11. }
  12. export type OAuthProviders = Record<string, OAuthProvider>