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

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

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