Migrate servers reducer to typescript

This commit is contained in:
Alejandro Celaya
2020-08-23 10:20:31 +02:00
parent 87e64e5899
commit dc78138066
4 changed files with 59 additions and 43 deletions

View File

@@ -1,9 +1,10 @@
import { MercureInfo } from '../mercure/reducers/mercureInfo';
import { ServersMap } from '../servers/reducers/servers';
export type ConnectDecorator = (props: string[], actions?: string[]) => any;
export interface ShlinkState {
servers: any;
servers: ServersMap;
selectedServer: any;
shortUrlsList: any;
shortUrlsListParams: any;