const { createActions: createActionCreators } = require('redux-actions'); module.exports = createActionCreators({ PULSE: { READY: null, CLOSE: null, NEW: null, CHANGE: null, REMOVE: null, INFO: null, MOVE_SINK_INPUT: (sinkInputIndex, destSinkIndex) => ({ sinkInputIndex, destSinkIndex }), MOVE_SOURCE_OUTPUT: (sourceOutputIndex, destSourceIndex) => ({ sourceOutputIndex, destSourceIndex }), }, });