next-seo
Version:
SEO plugin for Next.js projects
15 lines (14 loc) • 525 B
TypeScript
/// <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;