สมรรถนะ => interface
This commit is contained in:
parent
0238e17fc4
commit
644005a6fe
3 changed files with 37 additions and 6 deletions
|
|
@ -48,4 +48,17 @@ interface NewPagination {
|
|||
sortBy: string;
|
||||
}
|
||||
|
||||
export type { FormQueryRound, FormRound, FormCompetency, FormDataRole,NewPagination };
|
||||
interface FormQueryCapacity {
|
||||
page: number;
|
||||
pageSize: number;
|
||||
keyword: string;
|
||||
}
|
||||
|
||||
export type {
|
||||
FormQueryRound,
|
||||
FormRound,
|
||||
FormCompetency,
|
||||
FormDataRole,
|
||||
NewPagination,
|
||||
FormQueryCapacity,
|
||||
};
|
||||
|
|
|
|||
|
|
@ -11,4 +11,19 @@ interface ResRound {
|
|||
startDate: Date;
|
||||
}
|
||||
|
||||
export type { ResRound };
|
||||
interface ResDataCapacity {
|
||||
description: string;
|
||||
id: string;
|
||||
name: string;
|
||||
type: string;
|
||||
capacityDetails: capacityDetails;
|
||||
}
|
||||
|
||||
interface capacityDetails {
|
||||
capacityId: string;
|
||||
description: string;
|
||||
id: string;
|
||||
level: string;
|
||||
}
|
||||
|
||||
export type { ResRound, ResDataCapacity };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue