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.

index.d.ts 783B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. declare namespace indentString {
  2. interface Options {
  3. /**
  4. The string to use for the indent.
  5. @default ' '
  6. */
  7. readonly indent?: string;
  8. /**
  9. Also indent empty lines.
  10. @default false
  11. */
  12. readonly includeEmptyLines?: boolean;
  13. }
  14. }
  15. /**
  16. Indent each line in a string.
  17. @param string - The string to indent.
  18. @param count - How many times you want `options.indent` repeated. Default: `1`.
  19. @example
  20. ```
  21. import indentString = require('indent-string');
  22. indentString('Unicorns\nRainbows', 4);
  23. //=> ' Unicorns\n Rainbows'
  24. indentString('Unicorns\nRainbows', 4, {indent: '♥'});
  25. //=> '♥♥♥♥Unicorns\n♥♥♥♥Rainbows'
  26. ```
  27. */
  28. declare function indentString(
  29. string: string,
  30. count?: number,
  31. options?: indentString.Options
  32. ): string;
  33. export = indentString;