Extract Frontmatter type

This commit is contained in:
Sat Naing
2022-09-11 14:04:25 +06:30
parent 7787f4a042
commit c6c4927638
+9
View File
@@ -0,0 +1,9 @@
export interface Frontmatter {
title: string;
description: string;
author: string;
datetime: string;
slug: string;
featured: boolean;
tags: string[];
}