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.

27 lines (26 loc) 488 B
export type Point = { lat?: number; lng?: number; }; export type Line = { points?: Array<Point>; }; export type Polygon = { points?: Array<Point>; }; export type Box = { lowerCorner?: Point; upperCorner?: Point; }; export type ItemOrFeed = { point?: Point; line?: Line; polygon?: Polygon; box?: Box; featureTypeTag?: string; relationshipTag?: string; featureName?: string; elev?: number; floor?: number; radius?: number; };