sanity-plugin-seo-tools
Version:
> Upgrading from V2 to V3 is a breaking change. The `seo-tools` input has been replaced by a SEO pane which needs to be set-up using a custom desk structure as per the installation guide. Secondly, the previously automatically provided fields (focus keywo
12 lines (11 loc) • 342 B
TypeScript
import React from 'react';
import { SeoToolsContextValue } from '../context';
import type { SanityDocument } from '@sanity/types';
type Props = React.PropsWithChildren<{
options?: Partial<SeoToolsContextValue>;
document?: {
displayed?: SanityDocument;
};
}>;
export declare const SeoToolsPane: React.FC<Props>;
export {};