login-form-error.ts 207 B

12345
  1. export const LoginErrorCode = {
  2. PROVIDER_DUPLICATED_USERNAME_EXCEPTION: 'ProviderDuplicatedUsernameException',
  3. } as const;
  4. export type LoginErrorCode = typeof LoginErrorCode[keyof typeof LoginErrorCode];