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

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

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