UNPKG

@dabapps/django-s3-file-upload

Version:

Upload files from the browser to S3 - client side implementation

15 lines (12 loc) 275 B
import { UploadState } from './types'; export const POST = 'POST'; export const INITIAL_REDUCER_STATE: UploadState = { loading: false, fileCount: 0, inFlightCount: 0, completeCount: 0, successCount: 0, failureCount: 0, data: undefined, error: undefined, };