UNPKG

next-seo

Version:

SEO plugin for Next.js projects

13 lines (12 loc) 354 B
import React from '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; }): React.JSX.Element; export { JsonLd };