mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 17:42:33 +01:00
25 lines
672 B
TypeScript
25 lines
672 B
TypeScript
import { createStore } from 'easy-peasy';
|
|
import flashes, { FlashStore } from '@/state/flashes';
|
|
import user, { UserStore } from '@/state/user';
|
|
import permissions, { GloablPermissionsStore } from '@/state/permissions';
|
|
import settings, { SettingsStore } from '@/state/settings';
|
|
import progress, { ProgressStore } from '@/state/progress';
|
|
|
|
export interface ApplicationStore {
|
|
permissions: GloablPermissionsStore;
|
|
flashes: FlashStore;
|
|
user: UserStore;
|
|
settings: SettingsStore;
|
|
progress: ProgressStore;
|
|
}
|
|
|
|
const state: ApplicationStore = {
|
|
permissions,
|
|
flashes,
|
|
user,
|
|
settings,
|
|
progress,
|
|
};
|
|
|
|
export const store = createStore(state);
|