13 lines
194 B
TypeScript
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
|
|
}
|