UNPKG

feed-watch

Version:

A highly configurable lightweight module for watching/emitting changes in rss feeds

5 lines (4 loc) 277 B
import { Item, Options as FeedParserOptions } from 'feedparser'; import { AxiosRequestConfig } from 'axios'; export declare function get(url: any, axiosOpts: AxiosRequestConfig, parserOpts: FeedParserOptions): Promise<Item[]>; export { AxiosRequestConfig, FeedParserOptions };