blog
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
export type ArticleFrontmatter = {
|
||||
ready: boolean;
|
||||
title: string;
|
||||
description: string;
|
||||
date: string;
|
||||
category: string;
|
||||
tags: string[];
|
||||
cover?: string;
|
||||
readTime?: string;
|
||||
summary?: string[];
|
||||
};
|
||||
|
||||
export type Article = ArticleFrontmatter & {
|
||||
slug: string;
|
||||
content: string;
|
||||
};
|
||||
Reference in New Issue
Block a user