no message
This commit is contained in:
parent
1b0e3a599d
commit
853f925d92
9 changed files with 596 additions and 129 deletions
|
|
@ -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 };
|
||||
|
|
|
|||
|
|
@ -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 };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue