flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
16 lines (15 loc) • 489 B
TypeScript
export interface Params {
set(key: string, value: string): void;
entries(): IterableIterator<[string, string]>;
}
export declare class GET implements Params {
private searchParams;
set(key: string, value: string): void;
entries(): IterableIterator<[string, string]>;
}
export declare class POST implements Params {
private formData;
set(key: string, value: string | Blob): void;
getFormData(): FormData;
entries(): IterableIterator<[string, string]>;
}