/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { BaseUploadEvent } from './BaseUploadEvent'; /** * The `onCancel` event. */ export interface UploadOnCancelEvent extends BaseUploadEvent { /** * The unique identifier of the group (batch) of one or more files that is cancelled. */ uid: string; }