UNPKG

flickr-sdk

Version:

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

10 lines (9 loc) 274 B
import { Transport } from "../types"; export declare class MockTransport implements Transport { private responses; constructor(response?: string); reset(): void; addMock(response: string): void; get(): Promise<Response>; post(): Promise<Response>; }