@netlify/content-engine
Version:
14 lines • 544 B
TypeScript
import { Store, AnyAction } from "redux";
import { IGatsbyState } from "../redux/types";
import { IBuildContext } from "./types";
import { IDataLayerContext } from "./types";
import { GatsbyConfig } from "../types";
type WebhookBody = IDataLayerContext["webhookBody"];
export declare function initialize({ program: args, parentSpan, engineConfig, }: IBuildContext & {
engineConfig?: GatsbyConfig;
}): Promise<{
store: Store<IGatsbyState, AnyAction>;
webhookBody?: WebhookBody;
}>;
export {};
//# sourceMappingURL=initialize.d.ts.map