// "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;