16 lines
431 B
TypeScript
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;
|
|
}
|
|
>;
|