UNPKG

gatsby

Version:
10 lines (9 loc) 414 B
import { Compiler } from "webpack"; import { WebpackWatching } from "../utils/start-server"; import { WebsocketManager } from "../utils/websocket-manager"; import { IBuildContext } from "./"; export declare function startWebpackServer({ program, app, workerPool, store, }: Partial<IBuildContext>): Promise<{ compiler: Compiler; websocketManager: WebsocketManager; webpackWatching: WebpackWatching; }>;