mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +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"
|
|
}
|