mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
13 lines
220 B
CoffeeScript
13 lines
220 B
CoffeeScript
Reflux = require 'reflux'
|
|
|
|
actions = [
|
|
"setEnvironment",
|
|
"authErrorOccurred",
|
|
"startConnect",
|
|
"finishedConnect",
|
|
"moveToPreviousPage",
|
|
"moveToPage"
|
|
]
|
|
|
|
module.exports =
|
|
Actions = Reflux.createActions(actions)
|