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