UNPKG

@themachinarium/google-merchant-feed

Version:
9 lines (8 loc) 233 B
import { UNIT } from "./unit"; export declare namespace DimensionWithUnit { type Model = { value: number; unit: keyof Pick<typeof UNIT, "cm" | "in">; }; function formatter(valueWithUnit: Model): string; }