/*! * SAPUI5 * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. */ /*! * SAPUI5 * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. * */ export interface Request { execute: () => Promise; equals: (other: Request) => boolean; clone: () => Request; }