From 8c0628126edf5bd1088d10f9c1f695c7e1f199d8 Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Tue, 9 Apr 2024 10:33:44 +0700 Subject: [PATCH] =?UTF-8?q?interface=20=E0=B8=A3=E0=B8=AD=E0=B8=9A?= =?UTF-8?q?=E0=B8=81=E0=B8=B2=E0=B8=A3=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B9=80?= =?UTF-8?q?=E0=B8=A1=E0=B8=B4=E0=B8=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/14_KPI/interface/request/Main.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/modules/14_KPI/interface/request/Main.ts b/src/modules/14_KPI/interface/request/Main.ts index 9df4698fc..4d3fd92cf 100644 --- a/src/modules/14_KPI/interface/request/Main.ts +++ b/src/modules/14_KPI/interface/request/Main.ts @@ -11,4 +11,16 @@ interface FormRound { endDate: Date | null; } -export type { FormQueryRound, FormRound }; +interface FormCompetency { + competencyType: string; + competencyName: string; + definition: string; + level_1: string; + level_2: string; + level_3: string; + level_4: string; + level_5: string; + evaluation: string; +} + +export type { FormQueryRound, FormRound, FormCompetency };