siegel
Version:
Web application development ecosystem
11 lines (10 loc) • 710 B
TypeScript
import * as utils from '../common';
import * as nodeUtils from './utils';
import getConfig from './get_config.js';
import webpackBuilder, { BUILD_CONSTANTS } from './client_build';
import { bootServer, getStaticServingData, http2Server, httpServer, proxyReq, extractSSL } from './server';
import type { Config, ServerExtenderFn, ExpressExtenderParams, HTTP2ExtenderParams } from './types';
declare function main(userConfig?: Config): Promise<void>;
export default main;
export { webpackBuilder, BUILD_CONSTANTS, getConfig, bootServer, getStaticServingData, http2Server, httpServer, proxyReq, extractSSL, nodeUtils, utils };
export type { Config, ServerExtenderFn, ExpressExtenderParams, HTTP2ExtenderParams };