UNPKG

flickr-sdk

Version:

Almost certainly the best Flickr API client in the world for node and the browser

8 lines (7 loc) 253 B
import type { Parser } from "../types"; import { XmlNode } from "@rgrove/parse-xml"; export declare class XMLParser implements Parser { parse(res: Response): Promise<any>; clean(xml: string): string; jsify(node: XmlNode | XmlNode[]): any; }