import Action from '../action/Action';
import { setDialogStateTo } from './LegendItem.store';
export var setDialogStateToAction = Action.create('setDialogStateToAction');
setDialogStateToAction.subscribe(function (action) {
return setDialogStateTo(action.data);
});