aboutsummaryrefslogtreecommitdiffstats
path: root/src/@types/ferdium-components.types.ts
blob: 03cfdc3b76c9587b4498c540321d81388fb28ee1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Actions } from '../actions/lib/actions';
import { RealStores } from '../stores';

export interface StoresProps {
  actions: Actions;
  stores: RealStores;
}

export interface GlobalError {
  status: number;
  message: string;
  code: string;
}