17 lines
255 B
TypeScript
17 lines
255 B
TypeScript
|
export interface BlogPost {
|
||
|
date: string;
|
||
|
title: string;
|
||
|
tags: string[];
|
||
|
file: string;
|
||
|
slug: string;
|
||
|
fullSlug: string;
|
||
|
markdown: string;
|
||
|
html: string;
|
||
|
}
|
||
|
|
||
|
export interface BlogPostTag {
|
||
|
name: string;
|
||
|
count: number;
|
||
|
posts: string[];
|
||
|
}
|