Move types definition under src directory

This commit is contained in:
Sat Naing
2022-09-22 20:39:51 +06:30
parent f367e05793
commit 9e351fe26d
7 changed files with 6 additions and 6 deletions
+10
View File
@@ -0,0 +1,10 @@
export interface Frontmatter {
title: string;
ogImage?: string;
description: string;
author: string;
datetime: string;
slug: string;
featured: boolean;
tags: string[];
}