gatsby-plugin-next-seo
Version:
SEO plugin for Gatsby projects
35 lines • 945 B
TypeScript
import { FC } from 'react';
import { Course } from 'schema-dts';
import { DeferSeoProps } from '../types';
import { Overrides } from '../utils/shared-types';
/**
* The Course JSON LD Component props.
*/
export interface CourseJsonLdProps extends DeferSeoProps, Overrides<Course> {
/**
* @deprecated
*
* Use `name` instead.
*/
courseName?: string;
/**
* The title of the course.
*/
name?: string;
/**
* A description of the course. Display limit of 60 characters.
*/
description: string;
/**
* The name of the provider.
*/
providerName: string;
/**
* URL of a reference Web page that unambiguously indicates the item's
* identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or
* official website.
*/
providerUrl?: string;
}
export declare const CourseJsonLd: FC<CourseJsonLdProps>;
//# sourceMappingURL=course.d.ts.map