| 123456789101112131415161718 |
- export type SignUpFormData = {
- phone: string;
- phoneVerificationStatus: boolean;
- name: string;
- password: string;
- birthDate: string;
- isUberDriver: boolean | undefined;
- vehicleType: string;
- vehicleModel: string;
- licensePlate: string;
- email: string;
- address: string;
- paymentMethod: string;
- };
- export type SignUpFormDataKey = keyof SignUpFormData;
- export type HandleSignUpFormDataChange = <K extends SignUpFormDataKey>(field: K, value: SignUpFormData[K]) => void;
|