UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

38 lines (33 loc) 955 B
/** * DevExtreme (file_management/upload_info.d.ts) * Version: 24.2.6 * Build date: Mon Mar 17 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ /** * An object that provides information about the file upload session. */ export default interface UploadInfo { /** * The number of bytes that is uploaded to the server. */ bytesUploaded: number; /** * The number of uploaded chunks and chunks that are to be uploaded. */ chunkCount: number; /** * Custom information that you can pass during file upload. For instance, you can specify a custom file ID when the first part of a file is being uploaded. */ customData: any; /** * The binary content of the uploading chunk. */ chunkBlob: Blob; /** * The index of the uploading chunk. */ chunkIndex: number; }