mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-15 12:39:28 +08:00
13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
|
/** @babel */
|
||
|
import Reflux from 'reflux';
|
||
|
|
||
|
ThemePickerActions = Reflux.createActions([
|
||
|
"uninstallTheme",
|
||
|
]);
|
||
|
|
||
|
for (key in ThemePickerActions) {
|
||
|
ThemePickerActions[key].sync = true;
|
||
|
}
|
||
|
|
||
|
export default ThemePickerActions;
|