UNPKG

@ima/cli

Version:

IMA.js CLI tool to build, develop and work with IMA.js applications.

14 lines (13 loc) 450 B
import { Environment } 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: Environment; }): Promise<void>;