Newer
Older
CrypticOreWallet / src / store / index.ts
@Drew Lemmy Drew Lemmy on 16 Feb 2021 284 bytes feat: add wallets!
import { ActionType, StateType } from "typesafe-actions";

export type Store = StateType<typeof import("../App").store>;
export type RootAction = ActionType<typeof import("./actions/index").default>;
export type RootState = StateType<typeof import("./reducers/RootReducer").default>;