/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * The settings for the Upload chunk functionality.
 */
export interface ChunkSettings {
    /**
     * The size of the chunks in bytes.
     *
     * @default 1048576
     */
    size?: number;
    /**
     * The number of milliseconds to wait before retrying a failed chunk upload.
     *
     * @default 100
     */
    autoRetryAfter?: number;
    /**
     * The number of attempts to retry uploading a failed chunk.
     *
     * @default 1
     */
    maxAutoRetries?: number;
    /**
     * Specifies whether the file upload process can be paused and later resumed.
     *
     * @default true
     */
    resumable?: boolean;
}
