UI - สืบสวนข้อเท็จจริง เพิ่ม type ให้ any เเล้ว ย้าย option ไป store

This commit is contained in:
setthawutttty 2023-10-18 11:46:28 +07:00
parent 074fc05412
commit 91fc7f7520
5 changed files with 111 additions and 144 deletions

View file

@ -2,6 +2,15 @@ interface DataOption {
id: string;
name: string;
}
interface investigatefactsDataRowType {
subject: string;
interrogated: string;
fault: string;
status: string;
active: string;
}
export type {
DataOption
DataOption,
investigatefactsDataRowType
};