gatsby-cli
Version:
Gatsby command-line interface for creating new sites and running Gatsby commands
12 lines (11 loc) • 453 B
TypeScript
import React, { PropsWithChildren } from "react";
import { IGatsbyCLIState, ILog } from "../../redux/types";
import { IRenderPageArgs } from "../../types";
interface IStoreStateContext {
logs: IGatsbyCLIState;
messages: Array<ILog>;
pageTree: IRenderPageArgs | null;
}
declare const StoreStateContext: React.Context<IStoreStateContext>;
export declare const StoreStateProvider: React.FC<PropsWithChildren>;
export default StoreStateContext;