UNPKG

fuse-box

Version:

Fuse-Box a bundler that does it right

8 lines (7 loc) 337 B
import { IPublicConfig } from '../config/IConfig'; import { IRunProps } from '../config/IRunProps'; import { IRunResponse } from './IRunResponse'; export declare function fusebox(publicConfig: IPublicConfig): { runDev: (runProps?: IRunProps) => Promise<IRunResponse>; runProd: (runProps?: IRunProps) => Promise<IRunResponse>; };