updated format code & eslint rule
This commit is contained in:
parent
67c6810def
commit
8a31554f38
102 changed files with 6271 additions and 6164 deletions
|
|
@ -1,48 +1,54 @@
|
|||
interface OptionData {
|
||||
id: string | undefined
|
||||
name: string | undefined
|
||||
code: string | undefined
|
||||
id: string | undefined;
|
||||
name: string | undefined;
|
||||
code: string | undefined;
|
||||
}
|
||||
|
||||
interface FormLeavetMainData {
|
||||
type: string
|
||||
numDate: string
|
||||
extend: string
|
||||
use: string
|
||||
numAll: string
|
||||
numDone: string
|
||||
numNot: string
|
||||
numCancel: string
|
||||
type: string;
|
||||
numDate: string;
|
||||
extend: string;
|
||||
use: string;
|
||||
numAll: string;
|
||||
numDone: string;
|
||||
numNot: string;
|
||||
numCancel: string;
|
||||
}
|
||||
|
||||
interface formListLeaveData {
|
||||
no: string
|
||||
date: string | null
|
||||
type: string
|
||||
status: string
|
||||
year: string
|
||||
no: string;
|
||||
date: string | null;
|
||||
type: string;
|
||||
status: string;
|
||||
year: string;
|
||||
}
|
||||
|
||||
interface TypeLeave {
|
||||
code: string
|
||||
createdAt: Date
|
||||
createdFullName: string
|
||||
createdUserId: string
|
||||
id: string
|
||||
lastUpdateFullName: string
|
||||
lastUpdateUserId: string
|
||||
lastUpdatedAt: Date | null
|
||||
limit: number
|
||||
name: string
|
||||
code: string;
|
||||
createdAt: Date;
|
||||
createdFullName: string;
|
||||
createdUserId: string;
|
||||
id: string;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: string;
|
||||
lastUpdatedAt: Date | null;
|
||||
limit: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
interface LeaveItem {
|
||||
text: string
|
||||
color: string
|
||||
value: number
|
||||
all: number
|
||||
use: number
|
||||
remain: number
|
||||
text: string;
|
||||
color: string;
|
||||
value: number;
|
||||
all: number;
|
||||
use: number;
|
||||
remain: number;
|
||||
}
|
||||
|
||||
export type { OptionData, FormLeavetMainData, formListLeaveData, TypeLeave, LeaveItem }
|
||||
export type {
|
||||
OptionData,
|
||||
FormLeavetMainData,
|
||||
formListLeaveData,
|
||||
TypeLeave,
|
||||
LeaveItem,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue