Cockatrice/webclient/src/store/rooms/rooms.actions.tsx
2026-04-15 21:48:03 -05:00

5 lines
167 B
TypeScript

import { roomsSlice } from './rooms.reducer';
export const Actions = roomsSlice.actions;
export type RoomsAction = ReturnType<typeof Actions[keyof typeof Actions]>;