UNPKG

devextreme

Version:

JavaScript/TypeScript Component Suite for Responsive Web Development

36 lines (34 loc) 1.12 kB
/** * DevExtreme (common/export/excel.types.d.ts) * Version: 25.2.7 * Build date: Tue May 05 2026 * * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export interface CellAddress { /** * The index of a row that contains the cell. */ row?: number; /** * The index of a column that contains the cell. */ column?: number; } /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export interface CellRange { /** * Coordinates of the top left cell. */ from?: CellAddress; /** * Coordinates of the bottom right cell. */ to?: CellAddress; }