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