export interface IGetTypeResponse {
    data: {
        id: number;
        nome: string;
        mascara: string;
    }[];
}
