All files / src/schemas/auth auth.schema.d.ts

0% Statements 0/0
0% Branches 0/0
0% Functions 0/0
0% Lines 0/0

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17                                 
import { AuthZODSchema } from './auth.schema';
import { z } from 'zod';
 
declare global {
  type TAuthSchema = z.infer<typeof AuthZODSchema.authSchema>;
  type TRegisterSchema = z.infer<typeof AuthZODSchema.registerSchema>;
  type TForgetPasswordSchema = z.infer<typeof AuthZODSchema.forgetPasswordSchema>;
  type TResetPasswordSchema = z.infer<typeof AuthZODSchema.resetPasswordSchema>;
  type TUpdatePasswordSchema = z.infer<typeof AuthZODSchema.updatePasswordSchema>;
  type TValidateUserSchema = z.infer<typeof AuthZODSchema.validateUserSchema>;
  type TValidateOTPSchema = z.infer<typeof AuthZODSchema.validateOTPSchema>;
  type TRefreshTokenSchema = z.infer<typeof AuthZODSchema.refreshTokenSchema>;
  type TSendMFARequestSchema = z.infer<typeof AuthZODSchema.sendMFARequestSchema>;
  type TConfirmMFASchema = z.infer<typeof AuthZODSchema.confirmMFASchema>;
  type TSetPermissionSchema = z.infer<typeof AuthZODSchema.setPermissionSchema>;
}