module LoggedIn.Home.Action ( Action(..) ) where import Model.Payment exposing (PaymentId) import LoggedIn.Home.Account.Action as AccountAction import LoggedIn.Home.AddPayment.Action as AddPaymentAction type Action = NoOp | UpdateAdd AddPaymentAction.Action | UpdateAccount AccountAction.Action | ToggleEdit PaymentId | UpdatePage Int | ShowMonthlyDetail | ToggleMonthlyDetail