UNPKG

@themachinarium/google-merchant-feed

Version:
9 lines (8 loc) 243 B
import { UNIT } from "./unit"; export declare namespace WeightWithUnit { type Model = { value: number; unit: keyof Pick<typeof UNIT, "lb" | "oz" | "g" | "kg">; }; function formatter(valueWithUnit: Model): string; }