mapDataUsingRowHeights.d.ts 358 B

1234
  1. import type { VerticalAlignment } from './types/api';
  2. import type { BaseConfig, Row } from './types/internal';
  3. export declare const padCellVertically: (lines: string[], rowHeight: number, verticalAlignment: VerticalAlignment) => string[];
  4. export declare const mapDataUsingRowHeights: (unmappedRows: Row[], rowHeights: number[], config: BaseConfig) => Row[];