openpanel/packages/devtools-shared/src/feed.ts
Stefan Pejcic 09f9f9502d packages
2024-11-07 19:03:37 +01:00

13 lines
211 B
TypeScript

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