next-seo
Version:
SEO plugin for Next.js projects
13 lines (12 loc) • 365 B
TypeScript
/// <reference types="react" />
export interface JsonLdProps {
type?: string;
scriptId?: string;
dataArray?: any[];
useAppDir?: boolean;
[key: string]: any;
}
declare function JsonLd({ type, keyOverride, scriptKey, scriptId, dataArray, useAppDir, ...rest }: JsonLdProps & {
scriptKey: string;
}): JSX.Element;
export { JsonLd };