32 lines
604 B
TypeScript
32 lines
604 B
TypeScript
interface resMain {
|
|
id: string;
|
|
createdAt: Date;
|
|
year: string;
|
|
round: number;
|
|
total: number;
|
|
typeReport: String;
|
|
}
|
|
|
|
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 };
|