Files
homarr/packages/old-import/src/widgets/definitions/rss.ts
2024-10-21 13:19:34 +03:00

16 lines
431 B
TypeScript

import type { CommonOldmarrWidgetDefinition } from "./common";
export type OldmarrRssDefinition = CommonOldmarrWidgetDefinition<
"rss",
{
rssFeedUrl: string[];
enableRtl: boolean;
refreshInterval: number;
dangerousAllowSanitizedItemContent: boolean;
textLinesClamp: number;
sortByPublishDateAscending: boolean;
sortPostsWithoutPublishDateToTheTop: boolean;
maximumAmountOfPosts: number;
}
>;