aboutsummaryrefslogtreecommitdiffstats
path: root/src/@types/ferdium-components.types.ts
blob: 516ef9dd7fbd9bb7e932a4fa6d91836436eb27e8 (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;
}