14 lines
		
	
	
		
			376 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			376 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * indent an array
 | 
						|
 * @param stringArg
 | 
						|
 * @param spaceAmount
 | 
						|
 */
 | 
						|
export declare let indent: (stringArg: string, spaceAmount: number) => string;
 | 
						|
/**
 | 
						|
 * indents a string with prefix
 | 
						|
 * @param stringArg
 | 
						|
 * @param prefixArg
 | 
						|
 */
 | 
						|
export declare let indentWithPrefix: (stringArg: string, prefixArg: string) => string;
 | 
						|
export declare let normalize: (stringArg: string) => string;
 |