pluginActions.tsx 212 B

123456789101112
  1. import Reflux from 'reflux';
  2. const PluginActions = Reflux.createActions([
  3. 'update',
  4. 'updateError',
  5. 'updateSuccess',
  6. 'fetchAll',
  7. 'fetchAllSuccess',
  8. 'fetchAllError',
  9. ]);
  10. export default PluginActions;