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.

6 lines (5 loc) 292 B
import type { ParseFunction } from '../../common/types.js'; import type { InReplyTo, Item, Link } from './types.js'; export declare const parseInReplyTo: ParseFunction<InReplyTo>; export declare const retrieveLink: ParseFunction<Link>; export declare const retrieveItem: ParseFunction<Item>;