Skip to content
This repository was archived by the owner on Jun 16, 2021. It is now read-only.

Latest commit

 

History

History
62 lines (35 loc) · 1.21 KB

ipostactionhandlers.md

File metadata and controls

62 lines (35 loc) · 1.21 KB

redux-data-service > IPostActionHandlers

Interface: IPostActionHandlers

Used in an action's meta, such that an epic will call the given callbacks when an API request resolves

Hierarchy

IPostActionHandlers

Index

Properties


Properties

<Optional> onError

● onError: function

Defined in Services/DataService/IPostActionHandlers.ts:4

Type declaration

▸(errors: any): void

Parameters:

Name Type
errors any

Returns: void


<Optional> onSuccess

● onSuccess: function

Defined in Services/DataService/IPostActionHandlers.ts:3

Type declaration

▸(data: any): void

Parameters:

Name Type
data any

Returns: void