mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
14 lines
241 B
JavaScript
14 lines
241 B
JavaScript
|
/** @babel */
|
||
|
import Reflux from 'reflux';
|
||
|
|
||
|
const SendLaterActions = Reflux.createActions([
|
||
|
'sendLater',
|
||
|
'cancelSendLater',
|
||
|
])
|
||
|
|
||
|
for (const key in SendLaterActions) {
|
||
|
SendLaterActions[key].sync = true
|
||
|
}
|
||
|
|
||
|
export default SendLaterActions
|