src/profile/profile.interface.ts
Properties |
profile |
profile:
|
Type : ProfileData
|
export interface ProfileData {
username: string;
bio: string;
image?: string;
following?: boolean;
}
export interface ProfileRO {
profile: ProfileData;
}