2017-10-05 13:55:59 +00:00
|
|
|
/**
|
|
|
|
* indent an array
|
|
|
|
* @param stringArg
|
|
|
|
* @param spaceAmount
|
|
|
|
*/
|
2016-07-06 08:04:25 +00:00
|
|
|
export declare let indent: (stringArg: string, spaceAmount: number) => string;
|
2017-10-05 13:55:59 +00:00
|
|
|
/**
|
|
|
|
* indents a string with prefix
|
|
|
|
* @param stringArg
|
|
|
|
* @param prefixArg
|
|
|
|
*/
|
2016-07-06 08:04:25 +00:00
|
|
|
export declare let indentWithPrefix: (stringArg: string, prefixArg: string) => string;
|
2016-07-07 23:49:32 +00:00
|
|
|
export declare let normalize: (stringArg: string) => string;
|