feat(global-state-store): implement GlobalStateStore and utils

* Create GlobalStateStore for managing application state.
* Add utility functions for loading and saving state to storage.
* Define types for global state and session management.
* Implement ProgramDataWrapper for fetching and updating program data.
This commit is contained in:
Hein
2026-02-02 13:18:33 +02:00
parent 63222f8f28
commit 29d56980b2
5 changed files with 564 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
export { ProgramDataWrapper } from './src/ProgramDataWrapper'
export {
getApiURL,
setApiURL,
programDataStore,
useProgramDataStore,
} from './src/store/ProgramDataStore.store'
export type * from './src/types'