UNPKG

gatsby

Version:
11 lines (10 loc) 394 B
import { IBuildContext } from "../services"; import { Runner } from "./create-graphql-runner"; import type { GatsbyWorkerPool } from "../utils/worker/pool"; import { IProgram } from "../commands/types"; export declare function bootstrap(initialContext: Partial<IBuildContext> & { program: IProgram; }): Promise<{ gatsbyNodeGraphQLFunction: Runner; workerPool: GatsbyWorkerPool; }>;