import { ILancamentoEstoque } from '../types/lancamento-estoque.type'; import { ITipoEstoque } from '../types/tipo-estoque.type'; export interface IFindParams { idProdutoEstrutura: number; } export interface IFindResponse { data: { tipoEstoque: ITipoEstoque; lancamentoEstoque: ILancamentoEstoque; componentes: { produto: { id: number; }; quantidade: number; }[]; }; }