reducers: {
shelby: Reducer<
{
achAccountHolderInfo: null
| AchAccountHolderInfo;
bills: BillItem[];
billsLoading: boolean;
lookupState: LookupState;
parcels: SearchResultItem[];
paymentContactInfo: null | ContactInfo;
paymentRecording: { error?: string; loading: boolean; recorded: boolean };
taxBillInfo: TaxBillInfoState;
taxBills: TaxBill[];
workflows: ShelbyWorkflowsState;
},
AnyAction,
>;
} = ...
Type Declaration
shelby: Reducer<
{
achAccountHolderInfo: null
| AchAccountHolderInfo;
bills: BillItem[];
billsLoading: boolean;
lookupState: LookupState;
parcels: SearchResultItem[];
paymentContactInfo: null | ContactInfo;
paymentRecording: { error?: string; loading: boolean; recorded: boolean };
taxBillInfo: TaxBillInfoState;
taxBills: TaxBill[];
workflows: ShelbyWorkflowsState;
},
AnyAction,
>