Refactoring code module 12_evaluatePersonal
This commit is contained in:
parent
381ec04492
commit
490f02309e
33 changed files with 598 additions and 1036 deletions
|
|
@ -77,6 +77,22 @@ interface FileLists {
|
|||
pathName: string; //link file
|
||||
}
|
||||
|
||||
interface Meeting {
|
||||
id: string;
|
||||
date: Date | string;
|
||||
dateStart: Date | string;
|
||||
title: string;
|
||||
round: string;
|
||||
dateEnd: Date | string;
|
||||
result: string;
|
||||
timePeriod: string;
|
||||
}
|
||||
|
||||
interface Pagination {
|
||||
page: number;
|
||||
rowsPerPage: number;
|
||||
}
|
||||
|
||||
export type {
|
||||
DataOption,
|
||||
InvestigatefactsDataRowType,
|
||||
|
|
@ -88,4 +104,6 @@ export type {
|
|||
DataOptioGroup,
|
||||
DataOptionYear,
|
||||
OptionStatus,
|
||||
Meeting,
|
||||
Pagination,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue