UNPKG

@bliztek/feed-generator

Version:

A simple and lightweight Node.js library for generating RSS 2.0, Atom, and JSON Feed formats.

7 lines (6 loc) 203 B
import { Feed } from "../types.js"; export type XmlRenderOptions = { compact: boolean; stylesheet?: string; }; export declare const renderRSS: (feed: Feed, options?: XmlRenderOptions) => string;