/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Defines the operation (`upload` or `remove`) for which the `success` or `error` event is raised.
 */
export type OperationType = "upload" | "remove";
