Tim van der Lippe | 4cb0974 | 2022-01-07 13:25:03 | [diff] [blame] | 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[]; |