MCPcopy
hub / github.com/NitroRCr/AIaW / UserData

Interface UserData

src/stores/user-data.ts:4–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { persistentReactive } from 'src/composables/persistent-reactive'
3
4interface UserData {
5 lastWorkspaceId: string
6 noobAlertDismissed: boolean,
7 tipDismissed: Record<string, boolean>
8 prodExpiredNotifiedTimestamp: number
9 evalExpiredNotified: boolean
10 migrationAlertDismissed: boolean
11}
12
13export const useUserDataStore = defineStore('user-data', () => {
14 const [data, ready] = persistentReactive<UserData>('#user-data', {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected