💂♂️ fixed lint and prittier
This commit is contained in:
@@ -1,22 +1,22 @@
|
||||
export interface FrontMatter {
|
||||
title: string;
|
||||
description: string;
|
||||
date: string;
|
||||
author: string;
|
||||
category: string;
|
||||
tags: string[];
|
||||
image?: string;
|
||||
draft?: boolean;
|
||||
title: string
|
||||
description: string
|
||||
date: string
|
||||
author: string
|
||||
category: string
|
||||
tags: string[]
|
||||
image?: string
|
||||
draft?: boolean
|
||||
}
|
||||
|
||||
export interface Post {
|
||||
slug: string;
|
||||
frontmatter: FrontMatter;
|
||||
content: string;
|
||||
readingTime: number;
|
||||
excerpt: string;
|
||||
slug: string
|
||||
frontmatter: FrontMatter
|
||||
content: string
|
||||
readingTime: number
|
||||
excerpt: string
|
||||
}
|
||||
|
||||
export interface BlogParams {
|
||||
slug: string[];
|
||||
slug: string[]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user