Add draft type in Frontmatter interface

This commit is contained in:
Sat Naing
2022-09-22 23:36:04 +06:30
parent d48a0d12e1
commit 023f86b2f4
+1
View File
@@ -6,6 +6,7 @@ export interface Frontmatter {
datetime: string;
slug: string;
featured: boolean;
draft: boolean;
tags: string[];
}