types.ts 158 B

123456789
  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. };