MCPcopy
hub / github.com/makeplane/plane / IUserStore

Interface IUserStore

packages/shared-state/src/store/user.store.ts:10–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8import type { IWorkspaceStore } from "./workspace.store";
9
10export interface IUserStore {
11 user: any;
12 workspaces: Map<string, IWorkspaceStore>;
13 isLoading: boolean;
14 error: any;
15}
16
17export class UserStore implements IUserStore {
18 user: any = null;

Callers

nothing calls this directly

Implementers 1

UserStorepackages/shared-state/src/store/user.s

Calls

no outgoing calls

Tested by

no test coverage detected