sanity-plugin-seo
Version:
Complete SEO toolkit for Sanity Studio with live scoring, AI suggestions, team workflows, and 30+ structured data types. Free and AI tiers live. Pro coming soon.
41 lines (40 loc) • 972 B
TypeScript
import { Schema } from "../types/Types";
declare const detectSchemaType: (schema: Schema) => {
"@type": string;
nofollowAttributes: string;
robotsMeta: string[];
metaTitle: string;
metaDescription: string;
focusKeyword: string;
seoKeywords: {
"@type": string;
}[];
hreflang: {
"@type": string;
locale: string;
url: string;
}[];
openGraph: {
image: string;
title: string;
description: string;
siteName: string;
};
additionalMetaTags: {
"@type": string;
metaAttributes: {
"@type": string;
attributeKey: string;
attributeType: string;
attributeValueImage: string;
attributeValueString: string;
}[];
}[];
twitter: {
cardType: string;
creator: string;
site: string;
handle: string;
};
} | undefined;
export default detectSchemaType;