UNPKG

@raona/sp

Version:

Raona utilities to work with Sharepoint using pnp/sp

10 lines (9 loc) 362 B
import { Action } from 'redux'; import { ThunkAction } from "./ThunkAction"; import { SPAbstractService } from '../services/SPAbstractService'; /** * Interface to be used with asynchronous actions. */ export interface ThunkActionWithSP { (dispatch: (action: Action | ThunkAction) => void, getState: <S>() => S, service: SPAbstractService): any; }