no message

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-11-08 18:02:52 +07:00
parent 1b0e3a599d
commit 853f925d92
9 changed files with 596 additions and 129 deletions

View file

@ -1,10 +1,38 @@
interface ListsData {
id: string;
leaveType: string
name: string
Date: Date
status: string
id: string;
leaveType: string;
name: string;
Date: Date;
status: string;
}
export type {
ListsData
}
interface FremData {
id: string;
leaveType: string | null;
name: string;
subject: string | null;
Date: string | null;
status: string;
quotaSick: string;
leaveSick: string;
quotaRemaining: string;
notification: string;
requesterPosition: string;
requesterLevel: string;
requesterBeUnder: string;
writeAt: string;
leaveSince: string | null;
leaveTo: string | null;
leaveNumber: number;
leaveDayType: string | null;
leaveLast: string | null;
phoneNumber: string;
address: string;
detail: string;
document: any | null;
nameWife: string;
dateOfBirth: string | null;
accumulatedHolidays: number;
currentHolidays: number;
}
export type { ListsData, FremData };

View file

@ -1,9 +1,14 @@
interface DataRows {
leaveType: string
name: string
Date: string
status: string
leaveType: string;
name: string;
Date: string;
status: string;
}
export type {
DataRows
}
interface FormData {
id: string;
leaveType: string;
name: string;
Date: string;
status: string;
}
export type { DataRows, FormData };