ตัวชี้วัด => รายการงานที่ได้รับมอบหมาย interface

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-05-09 14:44:51 +07:00
parent a8773977bb
commit e100ac0ec3
5 changed files with 62 additions and 13 deletions

View file

@ -40,4 +40,22 @@ interface ResEvaluator {
type: string;
}
export type { ResRound, ResDataCapacity, ResEvaluator };
interface ResAssignment {
data: {
result: {
data: [
{
createdAt: string;
id: string;
including: string;
includingName: string;
period: string;
year: string;
}
];
total: number;
};
};
}
export type { ResRound, ResDataCapacity, ResEvaluator, ResAssignment };