Files
matheoguilbert.fr/lib/blog/types.ts
T
2026-04-17 12:02:41 +02:00

17 lines
317 B
TypeScript

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;
};