summaryrefslogtreecommitdiff
path: root/app/src/store/state.ts
blob: e4169ffdc3aec690a363e13ef75cf52962631507 (plain)
1
2
3
4
5
6
import { AuthState } from "./modules/auth";

export interface RootState {
    api: string;
    auth?: AuthState;
}