calculateRowHeights.d.ts 247 B

12345
  1. import type { BaseConfig, Row } from './types/internal';
  2. /**
  3. * Produces an array of values that describe the largest value length (height) in every row.
  4. */
  5. export declare const calculateRowHeights: (rows: Row[], config: BaseConfig) => number[];