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