sparkletown/sparkle

View on GitHub
src/store/actions/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { AnimateMapActions } from "./AnimateMap";
import { AttendanceActions } from "./Attendance";
import { ChatActions } from "./Chat";
import { LocationActions } from "./Location";
import { RoomActions } from "./Room";
import { UserProfileActions } from "./UserProfile";

export type RootActions =
  | AttendanceActions
  | ChatActions
  | LocationActions
  | RoomActions
  | UserProfileActions
  | AnimateMapActions;