external-auth-provider.ts 262 B

12345678910
  1. export const IExternalAuthProviderType = {
  2. ldap: 'ldap',
  3. saml: 'saml',
  4. oidc: 'oidc',
  5. google: 'google',
  6. github: 'github',
  7. } as const;
  8. export type IExternalAuthProviderType =
  9. (typeof IExternalAuthProviderType)[keyof typeof IExternalAuthProviderType];