MCPcopy
hub / github.com/subnub/myDrive / UserStateType

Interface UserStateType

src/reducers/user.ts:4–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { UserType } from "../types/user";
3
4interface UserStateType {
5 user?: null | UserType;
6 loggedIn: boolean;
7 lastRefreshed: number;
8}
9
10const initialState: UserStateType = {
11 user: null,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected