สมรรถนะ => interface

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-19 15:50:01 +07:00
parent 0238e17fc4
commit 644005a6fe
3 changed files with 37 additions and 6 deletions

View file

@ -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,
};

View file

@ -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 };