PlanningUpdateMessage.ts 215 B

123456789
  1. import { Mutations } from "@/store/Mutations";
  2. export type PlanningUpdateMessage = {
  3. uuid: string;
  4. user: string;
  5. method: keyof Mutations | "toast";
  6. payload: string;
  7. };
  8. export default PlanningUpdateMessage;