โ– humdrum codex / soft
481 B raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
// "feeds" = personal RSS, the user's own subscriptions โ€” distinct from the
// curated "news" card. Same shape as news (it's RSS either way), re-exported
// under feeds names so the kinds stay independent (own config, card, section).

import { NewsConfig, NewsPayload } from "./news";

export const FeedsConfig = NewsConfig;
export type FeedsConfig = import("./news").NewsConfig;

export const FeedsPayload = NewsPayload;
export type FeedsPayload = import("./news").NewsPayload;