UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

11 lines (10 loc) 244 B
export type FeedEntry = { id: string; title: string; date: Date | null; description: string; content: string; link: string; author: string; }; export declare function loadFeeds(urls: string[]): Promise<FeedEntry[]>;