wrapCell.d.ts 287 B

12345678
  1. /**
  2. * Wrap a single cell value into a list of lines
  3. *
  4. * Always wraps on newlines, for the remainder uses either word or string wrapping
  5. * depending on user configuration.
  6. *
  7. */
  8. export declare const wrapCell: (cellValue: string, cellWidth: number, useWrapWord: boolean) => string[];