20 lines
355 B
TypeScript
20 lines
355 B
TypeScript
/**
|
|
* 프로필 관련 타입 정의
|
|
*/
|
|
|
|
export interface ProfileFormData {
|
|
user_name: string;
|
|
email: string;
|
|
dept_name: string;
|
|
position_name: string;
|
|
locale: string;
|
|
}
|
|
|
|
export interface ProfileModalState {
|
|
isOpen: boolean;
|
|
form_data: ProfileFormData;
|
|
selected_image: string | null;
|
|
selected_file: File | null;
|
|
isSaving: boolean;
|
|
}
|