hyper/lib/actions/config.ts
2020-01-02 21:11:35 +01:00

17 lines
283 B
TypeScript

import {CONFIG_LOAD, CONFIG_RELOAD} from '../constants/config';
export function loadConfig(config) {
return {
type: CONFIG_LOAD,
config
};
}
export function reloadConfig(config) {
const now = Date.now();
return {
type: CONFIG_RELOAD,
config,
now
};
}