OwlCyberSecurity - MANAGER
Edit File: store.d.ts
import type { Assets, BrandingOptions, VersionProps } from '../../adminjs-options.interface.js'; import { type DashboardInState, type DrawerInState, type FilterDrawerInState, type LolcaleInState, type ModalInState, type NoticesInState, type PagesInState, type PathsInState, type ResourcesInState, type RouterInState, type SessionInState, type ThemeInState } from './reducers/index.js'; export type ReduxState = { assets: Assets; branding: BrandingOptions; dashboard: DashboardInState; drawer: DrawerInState; filterDrawer: FilterDrawerInState; locale: LolcaleInState; modal: ModalInState; notices: NoticesInState; pages: PagesInState; paths: PathsInState; resources: ResourcesInState; router: RouterInState; session: SessionInState; theme?: ThemeInState; versions: VersionProps; }; declare const _default: (initialState?: {}) => import("redux").Store<import("redux").EmptyObject & ReduxState, import("redux").AnyAction>; export default _default;