2024-04-09 15:22:23 +07:00
|
|
|
interface FormProfile {
|
|
|
|
|
fullName: string;
|
2024-04-22 18:11:24 +07:00
|
|
|
|
2024-04-09 15:22:23 +07:00
|
|
|
position: string;
|
|
|
|
|
type: string;
|
|
|
|
|
level: string;
|
2024-04-22 18:11:24 +07:00
|
|
|
status: string | undefined;
|
|
|
|
|
result: string | undefined;
|
2024-04-09 15:22:23 +07:00
|
|
|
score: string;
|
|
|
|
|
|
2024-04-22 18:11:24 +07:00
|
|
|
avartar: string;
|
2024-04-09 15:22:23 +07:00
|
|
|
}
|
|
|
|
|
|
2024-04-22 18:11:24 +07:00
|
|
|
interface FormDataAssigned {
|
|
|
|
|
indicator: string;
|
|
|
|
|
target: string;
|
|
|
|
|
unit: string;
|
|
|
|
|
weigth: string;
|
|
|
|
|
definition: string;
|
2024-04-09 15:22:23 +07:00
|
|
|
}
|
2024-04-22 18:11:24 +07:00
|
|
|
export type { FormProfile, FormDataAssigned };
|