howTo.d.ts 525 B

1234567891011121314
  1. /// <reference types="react" />
  2. import { JsonLdProps } from './jsonld';
  3. import { PriceSpecification, Step } from 'src/types';
  4. export interface HowToJsonLdProps extends JsonLdProps {
  5. name: string;
  6. image?: string;
  7. estimatedCost?: PriceSpecification;
  8. supply?: string[];
  9. tool?: string[];
  10. step: Step[];
  11. totalTime?: string;
  12. }
  13. declare function howToJsonLd({ type, keyOverride, image, estimatedCost, supply, tool, step, ...rest }: HowToJsonLdProps): JSX.Element;
  14. export default howToJsonLd;