Sha256: 366fd96d60cbbffb558b1fa1565157ad999eb43b13e5ade3ef3afce02086d19c

Contents?: true

Size: 783 Bytes

Versions: 100

Compression:

Stored size: 783 Bytes

Contents

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;

Version data entries

100 entries across 99 versions & 9 rubygems

Version Path
immosquare-cleaner-0.1.60 node_modules/indent-string/index.d.ts
immosquare-cleaner-0.1.59 node_modules/indent-string/index.d.ts
immosquare-cleaner-0.1.58 node_modules/indent-string/index.d.ts
immosquare-cleaner-0.1.57 node_modules/indent-string/index.d.ts
immosquare-cleaner-0.1.56 node_modules/indent-string/index.d.ts
immosquare-cleaner-0.1.55 node_modules/indent-string/index.d.ts
immosquare-cleaner-0.1.54 node_modules/indent-string/index.d.ts
immosquare-cleaner-0.1.53 node_modules/indent-string/index.d.ts
immosquare-cleaner-0.1.52 node_modules/indent-string/index.d.ts
trusty-cms-6.3.1 node_modules/indent-string/index.d.ts
immosquare-cleaner-0.1.51 node_modules/indent-string/index.d.ts
clapton-0.0.26 lib/clapton/javascripts/node_modules/indent-string/index.d.ts
clapton-0.0.25 lib/clapton/javascripts/node_modules/indent-string/index.d.ts
immosquare-cleaner-0.1.50 node_modules/indent-string/index.d.ts
clapton-0.0.24 lib/clapton/javascripts/node_modules/indent-string/index.d.ts
clapton-0.0.23 lib/clapton/javascripts/node_modules/indent-string/index.d.ts
clapton-0.0.22 lib/clapton/javascripts/node_modules/indent-string/index.d.ts
clapton-0.0.21 lib/clapton/javascripts/node_modules/indent-string/index.d.ts
clapton-0.0.20 lib/clapton/javascripts/node_modules/indent-string/index.d.ts
clapton-0.0.19 lib/clapton/javascripts/node_modules/indent-string/index.d.ts