Files
pipeline/frontend/types/profile.ts
T
2025-08-21 09:41:46 +09:00

20 lines
342 B
TypeScript

/**
* 프로필 관련 타입 정의
*/
export interface ProfileFormData {
userName: string;
email: string;
deptName: string;
positionName: string;
locale: string;
}
export interface ProfileModalState {
isOpen: boolean;
formData: ProfileFormData;
selectedImage: string;
selectedFile: File | null;
isSaving: boolean;
}