fix wrong comment ordering

This commit is contained in:
Sebastian Sdorra
2018-08-30 09:46:03 +02:00
parent 6f57899687
commit dca8fcbde1

View File

@@ -24,12 +24,14 @@ type Props = {
error: Error, error: Error,
config: Config, config: Config,
configUpdatePermission: boolean, configUpdatePermission: boolean,
// dispatch functions // dispatch functions
modifyConfig: (config: Config, callback?: () => void) => void, modifyConfig: (config: Config, callback?: () => void) => void,
// context objects
t: string => string,
fetchConfig: void => void, fetchConfig: void => void,
configReset: void => void, configReset: void => void,
// context objects
t: string => string,
history: History history: History
}; };