Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

wrapCell.d.ts 287B

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[];