This commit is contained in:
STW_TTTY\stwtt 2024-04-09 15:22:23 +07:00
parent cf66659b9a
commit 59aa022bab
15 changed files with 1629 additions and 6 deletions

View file

@ -0,0 +1,8 @@
interface DataOptions {
id:string
name:string
}
export type {
DataOptions
}

View file

@ -0,0 +1,22 @@
interface FormProfile {
fullName: string;
prefix: string;
firstName: string;
lastName: string;
position: string;
type: string;
level: string;
status: string;
score: string;
avartar:string
}
interface FormDataAssigned{
indicator:string
target:string
unit:string
weigth:string
definition:string
}
export type { FormProfile ,FormDataAssigned};