( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ HEX
HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux mail.thebrand.ai 6.8.0-107-generic #107-Ubuntu SMP PREEMPT_DYNAMIC Fri Mar 13 19:51:50 UTC 2026 x86_64
User: www-data (33)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/tmpr/../tmpr/../tmpr/../node_modules/table/dist/src/spanningCellManager.d.ts
import type { DrawHorizontalLine, DrawVerticalLine, SpanningCellConfig } from './types/api';
import type { CellCoordinates, ColumnConfig, ResolvedRangeConfig, Row } from './types/internal';
export declare type SpanningCellManager = {
    getContainingRange: (cell: CellCoordinates, options?: {
        mapped: true;
    }) => ResolvedRangeConfig | undefined;
    inSameRange: (cell1: CellCoordinates, cell2: CellCoordinates) => boolean;
    rowHeights: number[];
    setRowHeights: (rowHeights: number[]) => void;
};
export declare type SpanningCellParameters = {
    spanningCellConfigs: SpanningCellConfig[];
    rows: Row[];
    columnsConfig: ColumnConfig[];
    drawVerticalLine: DrawVerticalLine;
    drawHorizontalLine: DrawHorizontalLine;
};
export declare type SpanningCellContext = SpanningCellParameters & {
    rowHeights: number[];
};
export declare const createSpanningCellManager: (parameters: SpanningCellParameters) => SpanningCellManager;