UNPKG

@raona/sp

Version:

Raona utilities to work with Sharepoint using pnp/sp

8 lines (7 loc) 214 B
import { Action } from "redux"; /** * Interface to be used with asynchronous actions. */ export interface ThunkAction { (dispatch: (action: Action | ThunkAction) => void, getState: <S>() => S): any; }