UNPKG

kibana-123

Version:

Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic

31 lines (22 loc) 483 B
import ActionTypes from '../action_types'; export default { openCodeViewer: slug => ({ type: ActionTypes.OPEN_CODE_VIEWER, slug, }), updateCodeViewer: slug => ({ type: ActionTypes.UPDATE_CODE_VIEWER, slug, }), closeCodeViewer: () => ({ type: ActionTypes.CLOSE_CODE_VIEWER, }), registerCode: code => ({ type: ActionTypes.REGISTER_CODE, code, }), unregisterCode: code => ({ type: ActionTypes.UNREGISTER_CODE, code }), };