แก้ format code

This commit is contained in:
Warunee Tamkoo 2023-11-10 11:27:03 +07:00
parent 853f925d92
commit acfdec4353
8 changed files with 607 additions and 574 deletions

View file

@ -1,5 +1,5 @@
interface FormData {
Complaint: string;
complaint: string;
dateInvestigate: Date | null;
dateAllegation: Date | null;
dateEvident: Date | null;
@ -21,7 +21,7 @@ interface FormData {
}
interface disciplinaryRef {
Complaint: object | null;
complaint: object | null;
dateInvestigate: object | null;
dateAllegation: object | null;
dateEvident: object | null;
@ -43,4 +43,4 @@ interface disciplinaryRef {
[key: string]: any;
}
export type { FormData, disciplinaryRef, investigateDisDataRowType };
export type { FormData, disciplinaryRef };