5 lines
		
	
	
		
			70 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
		
			70 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
type KeyValue = {
 | 
						|
    [key: string]: any;
 | 
						|
};
 | 
						|
export default KeyValue;
 |