sparkletown/sparkle

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

Summary

Maintainability
A
0 mins
Test Coverage
export const UPDATE_LOCATION = "UPDATE_LOCATION";

interface UpdateLocationAction {
  type: typeof UPDATE_LOCATION;
  x: number;
  y: number;
}

export type LocationActions = UpdateLocationAction;