export interface IGetParams { pagina?: number; limite?: number; idProduto?: number; idLoja?: number; idCategoriaProduto?: number; } export interface IGetResponse { data: { categoriasProdutos: { id: 12345678; }[]; }[]; }