Merge branch 'develop' into anandadev

This commit is contained in:
AnandaTon 2023-08-15 20:39:35 +07:00
commit 17e62cbac1
50 changed files with 12112 additions and 2115 deletions

View file

@ -1,9 +1,32 @@
interface resMain {
id: string;
createdAt: Date;
year: string;
round: number;
total: number;
typeReport: String;
id: string;
createdAt: Date;
year: string;
round: number;
total: number;
typeReport: String;
}
export type { resMain };
interface ResponseItems {
activeDate: Date;
createdAt: Date;
firstName: string;
id: string;
isActive: boolean;
lastName: string;
location: string;
organizationPositionOld: string;
positionLevelOld: string;
positionNumberOld: string;
positionTypeOld: string;
prefix: string;
profileId: string;
reason: string;
salary: number;
sendDate: Date;
status: string;
statustext: string;
fullname: string;
}
export type { resMain, ResponseItems };