UNPKG

feedsmith

Version:

Robust and fast parser and generator for RSS, Atom, JSON Feed, and RDF feeds, with support for Podcast, iTunes, Dublin Core, and OPML files.

5 lines (4 loc) 242 B
import type { ParseFunction } from '../../common/types.js'; import type { Entry, Feed } from '../../feeds/atom/parse/types.js'; export declare const retrieveEntry: ParseFunction<Entry>; export declare const retrieveFeed: ParseFunction<Feed>;