hyper/lib/actions/config.js

16 lines
252 B
JavaScript
Raw Normal View History

2016-07-13 12:44:24 -08:00
import { CONFIG_LOAD, CONFIG_RELOAD } from '../constants/config';
export function loadConfig (config) {
return {
type: CONFIG_LOAD,
config
};
}
export function reloadConfig (config) {
return {
type: CONFIG_RELOAD,
config
};
}