setCost.d.ts 217 B

1234567
  1. import { PriceSpecification } from 'src/types';
  2. export declare function setCost(cost?: PriceSpecification): {
  3. '@type': string;
  4. type: string;
  5. priceCurrency: string;
  6. price: string;
  7. } | undefined;