(config: configOptions)
| 3 | import {configOptions} from '../config'; |
| 4 | |
| 5 | export function loadConfig(config: configOptions): HyperActions { |
| 6 | return { |
| 7 | type: CONFIG_LOAD, |
| 8 | config |
| 9 | }; |
| 10 | } |
| 11 | |
| 12 | export function reloadConfig(config: configOptions): HyperActions { |
| 13 | const now = Date.now(); |