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:

19 lines (18 loc) 820 B
/// <reference types="node" /> /// <reference types="node/http" /> export namespace errors { export { ProviderApiError }; export { ProviderUserError }; export { ProviderAuthError }; } export const socket: (server: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse> | import("https").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>) => void; export function app(optionsArg?: object): { app: import('express').Express; emitter: any; }; import { ProviderApiError } from "./server/provider/error"; import { ProviderUserError } from "./server/provider/error"; import { ProviderAuthError } from "./server/provider/error"; export function setLoggerProcessName({ loggerProcessName }: { loggerProcessName: any; }): void;