From 102121498b45ef221191401f6216260f072f78a9 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 15 Dec 2021 18:18:49 +0100 Subject: chore: create single post view --- src/ts/types/seo.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/ts/types/seo.ts (limited to 'src/ts/types/seo.ts') 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; +}; -- cgit v1.2.3