7 lines
103 B
TypeScript
7 lines
103 B
TypeScript
export interface Profile {
|
|
username: string;
|
|
bio: string;
|
|
image: string;
|
|
following: boolean;
|
|
}
|