UNPKG

462 BTypeScriptView Raw
1import type { SpanningCellContext } from './spanningCellManager';
2import type { RangeConfig } from './types/internal';
3/**
4 * Fill content into all cells in range in order to calculate total height
5 */
6export declare const wrapRangeContent: (rangeConfig: RangeConfig, rangeWidth: number, context: SpanningCellContext) => string[];
7export declare const alignVerticalRangeContent: (range: RangeConfig, content: string[], context: SpanningCellContext) => string[];