Skip to Content
Tiposgeneral
general.d.ts
export interface Address { street: string; number: string; complement: string | null; area: string; city: string; state: UF; zipcode: string; geo: { type: "Point"; coordinates: number[]; }; } type SocialMediaOption = | "Facebook" | "Instagram" | "Twitter" | "Youtube" | "Linkedin"; export interface SocialMedia { name: SocialMediaOption; url: string; } export interface Location { lat: number; lng: number; } export type MinMaxField = | "sale" | "longStay" | "privateArea" | "landArea" | "floor"; export interface MinMax { min: number | null; max: number | null; }

UF

uf.d.ts
export type UF = | "AC" | "AL" | "AP" | "AM" | "BA" | "CE" | "DF" | "ES" | "GO" | "MA" | "MT" | "MS" | "MG" | "PA" | "PB" | "PR" | "PE" | "PI" | "RJ" | "RN" | "RS" | "RO" | "RR" | "SC" | "SP" | "SE" | "TO";

Result

result.d.ts
export type Result = | { ok: true; message: string } | { ok: false; error: string };
Last updated on