Files
mohamed-node-mod-1/src/app/routes/profile/profile.model.ts

7 lines
103 B
TypeScript

export interface Profile {
username: string;
bio: string;
image: string;
following: boolean;
}