openpanel/packages/devtools-shared/src/feed.ts
Stefan Pejcic 8595a9f4e5 back
2024-05-08 19:58:53 +02: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[];