mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-11-04 01:47:25 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			396 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			396 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
export const START_MONITORING = 'START_MONITORING';
 | 
						|
export const STOP_MONITORING = 'STOP_MONITORING';
 | 
						|
export const SEND_TO_MONITOR = 'SEND_TO_MONITOR';
 | 
						|
 | 
						|
export function startMonitoring() {
 | 
						|
  return {
 | 
						|
    type: START_MONITORING,
 | 
						|
  };
 | 
						|
}
 | 
						|
 | 
						|
export function stopMonitoring() {
 | 
						|
  return {
 | 
						|
    type: STOP_MONITORING,
 | 
						|
  };
 | 
						|
}
 | 
						|
 | 
						|
export function sendToMonitor() {
 | 
						|
  return {
 | 
						|
    type: SEND_TO_MONITOR,
 | 
						|
  };
 | 
						|
}
 |