components popupPersonal
This commit is contained in:
parent
d4881eefb8
commit
ae305df6f7
5 changed files with 459 additions and 8 deletions
|
|
@ -20,4 +20,16 @@ interface ResponseObject {
|
|||
reasonSameDate: string | null;
|
||||
}
|
||||
|
||||
export type { ResponseObject };
|
||||
interface Goverment {
|
||||
oc: string;
|
||||
posNo: string;
|
||||
position: string;
|
||||
positionPathSide: string;
|
||||
positionLine: string;
|
||||
positionType: string;
|
||||
positionLevel: string;
|
||||
positionExecutive: string;
|
||||
positionExecutiveSide: string;
|
||||
}
|
||||
|
||||
export type { ResponseObject, Goverment };
|
||||
|
|
|
|||
|
|
@ -21,4 +21,14 @@ interface ResponseObject {
|
|||
profileType: string | null;
|
||||
}
|
||||
|
||||
export type { ResponseObject };
|
||||
interface PersonalImformation {
|
||||
prefix: string;
|
||||
citizenId: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
birthDate: string | null;
|
||||
age: string;
|
||||
gender: string;
|
||||
}
|
||||
|
||||
export type { ResponseObject, PersonalImformation };
|
||||
|
|
|
|||
7
src/components/information/interface/response/avatar.ts
Normal file
7
src/components/information/interface/response/avatar.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
interface Avatar {
|
||||
avatar: string;
|
||||
fullname: string;
|
||||
position: string;
|
||||
}
|
||||
|
||||
export type { Avatar };
|
||||
Loading…
Add table
Add a link
Reference in a new issue