@ima/cli
Version:
IMA.js CLI tool to build, develop and work with IMA.js applications.
14 lines (13 loc) • 462 B
TypeScript
import { ParsedEnvironment } from '@ima/core';
import { Compiler } from 'webpack';
import { ImaCliArgs, ImaConfig } from '../types';
export declare function createDevServer({ args, config, compiler, hostname, port, rootDir, environment, }: {
args: ImaCliArgs;
config: ImaConfig;
compiler: Compiler | undefined;
hostname: string;
port: number;
rootDir: string;
publicUrl: string;
environment: ParsedEnvironment;
}): Promise<void>;