@progress/kendo-angular-upload
Version:
Kendo UI Angular Upload Component
34 lines (33 loc) • 868 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Lists the possible states of a file.
*/
export declare enum FileState {
/**
* The file upload process failed.
*/
Failed = 0,
/**
* An initially selected file without a set state.
*/
Initial = 1,
/**
* The file is selected.
*/
Selected = 2,
/**
* The file uploaded successfully.
*/
Uploaded = 3,
/**
* The file is uploading.
*/
Uploading = 4,
/**
* The file upload process is paused.
*/
Paused = 5
}