Migrated settings module to TS

This commit is contained in:
Alejandro Celaya
2020-08-24 17:32:20 +02:00
parent 0b4a348969
commit fefa4e7848
7 changed files with 40 additions and 40 deletions

View File

@@ -1,6 +1,7 @@
import { MercureInfo } from '../mercure/reducers/mercureInfo';
import { ServersMap } from '../servers/reducers/servers';
import { SelectedServer } from '../servers/data';
import { Settings } from '../settings/reducers/settings';
export type ConnectDecorator = (props: string[], actions?: string[]) => any;
@@ -21,7 +22,7 @@ export interface ShlinkState {
tagDelete: any;
tagEdit: any;
mercureInfo: MercureInfo;
settings: any;
settings: Settings;
}
export type GetState = () => ShlinkState;