From a9464fbbfb66552d3cf75f8492049edffe3bacd1 Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Wed, 21 Sep 2022 14:08:04 +0630 Subject: [PATCH] Add optional ogImage type in Frontmatter interface --- src/utils/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/types.ts b/src/utils/types.ts index 43f69be..a311b94 100644 --- a/src/utils/types.ts +++ b/src/utils/types.ts @@ -1,5 +1,6 @@ export interface Frontmatter { title: string; + ogImage?: string; description: string; author: string; datetime: string;