UNPKG

@vim-crouwel/cfpc

Version:

TypeScript library for calculating CO2 emissions from food, energy, and transportation

11 lines (10 loc) 203 B
export type FoodItem = { co2_per_kg: number; source: string; }; export type FoodGroup = { [foodName: string]: FoodItem; }; export type FoodCategory = { [groupName: string]: FoodGroup; };