Files
health-mp/src/type/profile.ts

13 lines
194 B
TypeScript

export interface IProfile {
name: string
gender: 'male' | 'female' | ''
height: number | null
}
export interface IOverview {
icon: string
label: string
value:string
sub: string
}