fp/packages/next/app/lib/blog.ts

5 lines
83 B
TypeScript
Raw Normal View History

2024-01-20 16:16:14 +00:00
export interface IBlogPost {
slug: string;
title: string;
id: number;
}