gatsby
Version:
Blazing fast modern site generator for React
9 lines (8 loc) • 355 B
TypeScript
import { Store } from "redux";
import { IMutationAction } from "../services";
/**
* These are the deferred redux actions sent from api-runner-node
* They may include a `resolve` prop (if they are createNode actions).
* If so, we resolve the promise when we're done
*/
export declare const callRealApi: (event: IMutationAction, store?: Store) => void;