lunasqu.ee-nuxt/lib/types/post.ts

17 lines
255 B
TypeScript
Raw Normal View History

2022-10-16 11:04:03 +00:00
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[];
}