14 lines
245 B
TypeScript
14 lines
245 B
TypeScript
interface DataOption {
|
|
id: string;
|
|
label: string;
|
|
}
|
|
interface FormProfile {
|
|
id: string;
|
|
avatar: string;
|
|
fullName: string;
|
|
position: string;
|
|
positionLevel: string;
|
|
organization: string;
|
|
}
|
|
|
|
export type { DataOption, FormProfile };
|