import { Product } from "./open-food-facts.type";

export type SearchProductByNameResponse = {
  products: Product[];
}

export type SearchProductByBarcodeResponse = {
  product: Product;
}

export type GetProductByIdResponse = {
  product: Product;
}


