import { Store, AnyAction } from "redux"; import { IGatsbyState } from "../../redux/types"; export interface IMutationAction { type: string; payload: Array; } export interface IWaitingContext { nodeMutationBatch: Array; store?: Store; runningBatch: Array; sourceFilesDirty?: boolean; }