p5.js-web-editor/client/modules/IDE/actions/editorHidden.js

8 lines
135 B
JavaScript
Raw Normal View History

import * as ActionTypes from '../../../constants';
export function toggleBeep() {
return {
type: ActionTypes.TOGGLE_BEEP
};
}