Elemento
elemento.d.ts
export type Elemento = "logo" | "banner";
Brokerage
brokerage.d.ts
export type Brokerage = {
name: string | null;
profileImage: string | null;
}
Contact
contact.d.ts
export interface Contact {
name: string | null;
phone: string | null;
whatsapp: string | null;
email: string;
address: Address;
socialMedias: SocialMedia[];
creci: string | null
about: string | null
brokerage: Brokerage | null
}