ERP-node/frontend/types/profile.ts

20 lines
349 B
TypeScript
Raw Normal View History

2025-08-21 09:41:46 +09:00
/**
*
*/
export interface ProfileFormData {
userName: string;
email: string;
deptName: string;
positionName: string;
locale: string;
}
export interface ProfileModalState {
isOpen: boolean;
formData: ProfileFormData;
selectedImage: string | null;
2025-08-21 09:41:46 +09:00
selectedFile: File | null;
isSaving: boolean;
}