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:

16 lines (15 loc) 872 B
export let callback: (req: object, res: object, next: Function) => any; export let deauthorizationCallback: typeof import("./deauth-callback"); export let sendToken: (req: import("express").Request, res: import("express").Response, next: import("express").NextFunction) => void | import("express").Response<any, Record<string, any>>; export let get: typeof import("./get"); export let thumbnail: typeof import("./thumbnail"); export let list: typeof import("./list"); export let simpleAuth: typeof import("./simple-auth"); export let logout: typeof import("./logout"); export let connect: { (req: object, res: object, next: any): void; isOriginAllowed: typeof import("./connect").isOriginAllowed; }; export let preauth: typeof import("./preauth"); export let redirect: (req: object, res: object) => void; export let refreshToken: typeof import("./refresh-token");