/* ================ Props ================ */ export interface GetProfileProps { publicAddress: string } export interface BioProps { avatar?: string introduce?: string facebookLink?: string twitterLink?: string instagramLink?: string } export interface IdentificationInformationProps { front: string back: string selfiePhoto: string } export interface ProfileProps { email: string bio: BioProps identificationInformation: IdentificationInformationProps publicAddress: string createdAt: string id: string username?: string coverImage?: string } /* ================ State ================ */ export interface ProfileState { loading: { loadingGetProfile: boolean } profileData?: ProfileProps | any }