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.

10 lines (9 loc) 526 B
import type { ParseFunction } from '../../common/types.js'; import type { Category, Feed, Item, Owner } from './types.js'; export declare const parseCategory: ParseFunction<Category>; export declare const parseOwner: ParseFunction<Owner>; export declare const parseExplicit: ParseFunction<boolean>; export declare const parseDuration: ParseFunction<number>; export declare const parseImage: ParseFunction<string>; export declare const retrieveItem: ParseFunction<Item>; export declare const retrieveFeed: ParseFunction<Feed>;