openpanel/packages/devtools-shared/src/feed.ts
2024-02-05 10:23:04 +01:00

13 lines
227 B
TypeScript

export type FeedSection = {
content: string;
// frontmatter
title: string;
featured?: boolean;
date: string;
author: string;
avatar: string;
cover?: string;
};
export type Feed = FeedSection[];