1234567891011121314 |
- /// <reference types="react" />
- import { JsonLdProps } from './jsonld';
- import { PriceSpecification, Step } from 'src/types';
- export interface HowToJsonLdProps extends JsonLdProps {
- name: string;
- image?: string;
- estimatedCost?: PriceSpecification;
- supply?: string[];
- tool?: string[];
- step: Step[];
- totalTime?: string;
- }
- declare function howToJsonLd({ type, keyOverride, image, estimatedCost, supply, tool, step, ...rest }: HowToJsonLdProps): JSX.Element;
- export default howToJsonLd;
|