/** * DevExpress Analytics (core\internal\_requestManager.d.ts) * Version: 25.2.7 * Build date: May 5, 2026 * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { DxPromise } from '../utils/_jqueryUtils'; export interface IRequestManagerSettings { headers?: { [key: string]: any; }; data?: {}; type?: string; url?: string; abortController?: AbortController; beforeSend?: (settings: RequestInit) => void | Promise; } export interface IRequestManager { sendRequest: (settings: T) => DxPromise; useFetch?: boolean; }