export type inventoryCallback = ({}: { action: "products inventory"; payload: { productsInventory: productsInventoryResults[]; }; }) => void; export interface productsInventoryResults { id: string; totalInventory: number; }