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.

7 lines (6 loc) 339 B
import type { ParseFunction } from '../../common/types.js'; import type { Body, Head, Opml, Outline } from './types.js'; export declare const parseOutline: ParseFunction<Outline>; export declare const parseHead: ParseFunction<Head>; export declare const parseBody: ParseFunction<Body>; export declare const parseOpml: ParseFunction<Opml>;