mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-10-31 08:26:31 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			241 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			241 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // @flow
 | |
| import type { Teams$Team } from "flow-typed";
 | |
| 
 | |
| export type Action$AddTeamData = {
 | |
|   payload: Array<Teams$Team>,
 | |
|   type: "GET_LIST_OF_TEAMS"
 | |
| }
 | |
| 
 | |
| export type Actopm$SetCurrentTeam = {
 | |
|   team: Teams$Team,
 | |
|   action: "SET_CURRENT_TEAM"
 | |
| }
 |