12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- declare namespace indentString {
- interface Options {
-
- readonly indent?: string;
-
- readonly includeEmptyLines?: boolean;
- }
- }
- declare function indentString(
- string: string,
- count?: number,
- options?: indentString.Options
- ): string;
- export = indentString;
|