![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/indent-string/ |
declare namespace indentString { interface Options { /** The string to use for the indent. @default ' ' */ readonly indent?: string; /** Also indent empty lines. @default false */ readonly includeEmptyLines?: boolean; } } /** Indent each line in a string. @param string - The string to indent. @param count - How many times you want `options.indent` repeated. Default: `1`. @example ``` import indentString = require('indent-string'); indentString('Unicorns\nRainbows', 4); //=> ' Unicorns\n Rainbows' indentString('Unicorns\nRainbows', 4, {indent: '♥'}); //=> '♥♥♥♥Unicorns\n♥♥♥♥Rainbows' ``` */ declare function indentString( string: string, count?: number, options?: indentString.Options ): string; export = indentString;