import { Loading } from './loadingState';

export type FetchDataState<T, T2 = undefined> = {
  data: T | T2;
  loading: Loading;
  error: Error;
};