mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
13 lines
227 B
TypeScript
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[];
|