/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { UploadAsyncProps } from './UploadAsyncProps'; import { UploadFileInfo } from './UploadFileInfo'; /** * Represents the properties of the Kendo Ui for Vue UploadList Item component. */ export interface UploadListItemProps { /** * One or more files for the current item. */ files: Array; /** * The `disabled` property of the Upload. */ disabled: boolean; /** * The asynchronous properties of the Upload. */ async: UploadAsyncProps; }