alignSpanningCell.d.ts 462 B

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