This repository has been archived on 2026-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
confessions-of-grace/types/index.ts
T
2025-08-18 13:10:47 -05:00

20 lines
371 B
TypeScript

export interface PostData {
id: string;
title: string;
date: string;
excerpt: string;
content: string;
author: string;
tags: string[];
coverImage?: string;
}
export interface PostMetadata {
id: string;
title: string;
date: string;
excerpt: string;
author: string;
tags: string[];
coverImage?: string;
}