6 lines
91 B
TypeScript
Executable File
6 lines
91 B
TypeScript
Executable File
export interface UserProfile {
|
|
city: string;
|
|
country: string;
|
|
description: string;
|
|
}
|