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.

wrapString.d.ts 369B

123456789
  1. /**
  2. * Creates an array of strings split into groups the length of size.
  3. * This function works with strings that contain ASCII characters.
  4. *
  5. * wrapText is different from would-be "chunk" implementation
  6. * in that whitespace characters that occur on a chunk size limit are trimmed.
  7. *
  8. */
  9. export declare const wrapString: (subject: string, size: number) => string[];