setOffer.d.ts 379 B

1234567891011121314
  1. import type { Offer } from 'src/types';
  2. export declare function setOffer(offer?: Offer): {
  3. '@type': string;
  4. priceSpecification: {
  5. '@type': string;
  6. priceCurrency: string;
  7. price: string;
  8. } | undefined;
  9. itemOffered: {
  10. '@type': string;
  11. name: string;
  12. description: string;
  13. } | undefined;
  14. } | undefined;