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.
9 lines (8 loc) • 481 B
TypeScript
import type { ParseFunction } from '../../../common/types.js';
import type { Attachment, Author, Feed, Hub, Item } from './types.js';
export declare const parseAuthor: ParseFunction<Author>;
export declare const retrieveAuthors: ParseFunction<Array<Author>>;
export declare const parseHub: ParseFunction<Hub>;
export declare const parseAttachment: ParseFunction<Attachment>;
export declare const parseItem: ParseFunction<Item>;
export declare const parseFeed: ParseFunction<Feed>;