ประเมินเชี่ยวชาญ

This commit is contained in:
setthawutttty 2024-02-07 11:31:36 +07:00
parent 08e5d2b1e1
commit 659e508a92
2 changed files with 223 additions and 146 deletions

View file

@ -93,6 +93,16 @@ interface ListMenu {
label: string;
}
interface FormRef{
subject: object | null;
author: object | null;
commanderFullname: object | null;
commanderPosition: object | null;
commanderAboveFullname: object | null;
commanderAbovePosition: object | null;
[key: string]: any;
}
export type {
PersonInformation,
FormCommand,
@ -101,4 +111,5 @@ export type {
EducationForm,
CertificatesForm,
ListMenu,
FormRef
};