teamdigitale/italia-app

View on GitHub
ts/store/actions/payments.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ActionType, createStandardAction } from "typesafe-actions";
import { PaymentsLastDeletedInfo } from "../reducers/payments/lastDeleted";

export const paymentsLastDeletedSet = createStandardAction(
  "PAYMENTS_LAST_DELETED_SET"
)<PaymentsLastDeletedInfo>();

export type PaymentsActions = ActionType<typeof paymentsLastDeletedSet>;