types.ts 222 B

123456789101112
  1. export type LoginForm = {
  2. username: string;
  3. password: string;
  4. randomStr: number;
  5. grant_type: string;
  6. scope: string;
  7. code: string;
  8. loginType: number;
  9. confirmPassword?: string;
  10. nickName?: string;
  11. phone?: string;
  12. };