UNPKG

dropbox

Version:

The Dropbox JavaScript SDK is a lightweight, promise based interface to the Dropbox v2 API that works in both nodejs and browser environments.

18 lines (14 loc) 423 B
export const RPC = 'rpc'; export const UPLOAD = 'upload'; export const DOWNLOAD = 'download'; export const APP_AUTH = 'app'; export const USER_AUTH = 'user'; export const TEAM_AUTH = 'team'; export const NO_AUTH = 'noauth'; export const DEFAULT_API_DOMAIN = 'dropboxapi.com'; export const DEFAULT_DOMAIN = 'dropbox.com'; export const TEST_DOMAIN_MAPPINGS = { api: 'api', notify: 'bolt', content: 'api-content', };