UNPKG

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