/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * Lists the possible states of a file. */ export declare enum UploadFileStatus { /** * Indicates that the file upload process has failed. */ UploadFailed = 0, /** * An initially selected fake file without a set state. */ Initial = 1, /** * The file is selected. */ Selected = 2, /** * The file is in the process of uploading. */ Uploading = 3, /** * The file is successfully uploaded. */ Uploaded = 4, /** * The remove process has failed. */ RemoveFailed = 5, /** * The file is in the process of removing. */ Removing = 6 }