aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/types/seo.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/ts/types/seo.ts')
-rw-r--r--src/ts/types/seo.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/ts/types/seo.ts b/src/ts/types/seo.ts
new file mode 100644
index 0000000..fa30fe4
--- /dev/null
+++ b/src/ts/types/seo.ts
@@ -0,0 +1,21 @@
+export type SEO = {
+ title: string;
+ metaDesc: string;
+ readingTime: number;
+ opengraphAuthor: string;
+ opengraphDescription: string;
+ opengraphModifiedTime: string;
+ opengraphPublishedTime: string;
+ opengraphPublisher: string;
+ opengraphSiteName: string;
+ opengraphTitle: string;
+ opengraphType: string;
+ opengraphUrl: string;
+ opengraphImage: {
+ altText: string;
+ sourceUrl: string;
+ srcSet: string;
+ };
+ metaRobotsNofollow: string;
+ metaRobotsNoindex: string;
+};