UNPKG

usda-food-data-api-schema

Version:
10 lines (9 loc) 409 B
import mongoose from "mongoose"; import FoodNutrientSource from "./FoodNutrientSource.js"; export default interface FoodNutrientDerivation { id: Number; code: String; description: String; foodNutrientSource: FoodNutrientSource; } export declare const FoodNutrientDeviationSchema: mongoose.Schema<FoodNutrientDerivation, mongoose.Model<FoodNutrientDerivation, any, any, any>, {}, {}>;