ปรับ interfeac

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-10-19 15:39:18 +07:00
parent 09b1b9f492
commit cfc073e30c
16 changed files with 462 additions and 277 deletions

View file

@ -0,0 +1,30 @@
interface FormData {
orderType: string;
orderBy: string;
listInvestigation: string;
authority: string;
orderNumber: string;
dateYear: number;
date: Date | null;
authorityPosition: string
subject: string;
mistakeDetail: string
}
interface MyObjectRef {
orderType: object | null;
orderBy: object | null;
listInvestigation: object | null;
authority: object | null;
orderNumber: object | null;
dateYear: object | null;
date: object | null;
authorityPosition: object | null;
subject: object | null;
mistakeDetail: object | null;
[key: string]: any;
}
export type {
FormData,
MyObjectRef
}