UNPKG

@uppy/companion

Version:

OAuth helper and remote fetcher for Uppy's (https://uppy.io) extensible file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Dropbox and Google Drive, S3 and more :dog:

20 lines (19 loc) 405 B
export = Unsplash; /** * Adapter for API https://api.unsplash.com */ declare class Unsplash extends Provider { list({ token, query }: { token: any; query?: { cursor: any; q: any; }; }): Promise<any>; download({ id, token }: { id: any; token: any; }): Promise<any>; #private; } import Provider = require("../Provider");