Cockatrice/webclient/src/store/index.ts
2026-04-15 21:48:03 -05:00

27 lines
591 B
TypeScript

export { store, useAppSelector, useAppDispatch } from './store';
// Common
export { SortUtil } from './common';
// Games
export {
Types as GameTypes,
Selectors as GameSelectors,
Dispatch as GameDispatch } from './game';
export * from './game/game.interfaces';
// Server
export {
Types as ServerTypes,
Selectors as ServerSelectors,
Dispatch as ServerDispatch } from './server';
export * from './server/server.interfaces';
export {
Types as RoomsTypes,
Selectors as RoomsSelectors,
Dispatch as RoomsDispatch } from './rooms';
export * from './rooms/rooms.interfaces';