refactor typescript wiring

This commit is contained in:
seavor 2026-04-15 15:46:17 -05:00
parent cea9ae62d8
commit c62c336a11
286 changed files with 2999 additions and 3053 deletions

View file

@ -9,7 +9,7 @@ export {
Selectors as GameSelectors,
Dispatch as GameDispatch } from './game';
export * from 'store/game/game.interfaces';
export * from './game/game.interfaces';
// Server
export {
@ -17,13 +17,13 @@ export {
Selectors as ServerSelectors,
Dispatch as ServerDispatch } from './server';
export * from 'store/server/server.interfaces';
export * from './server/server.interfaces';
export {
Types as RoomsTypes,
Selectors as RoomsSelectors,
Dispatch as RoomsDispatch } from 'store/rooms';
Dispatch as RoomsDispatch } from './rooms';
export * from 'store/rooms/rooms.interfaces';
export * from './rooms/rooms.interfaces';