UNPKG

fuse-box

Version:

Fuse-Box a bundler that does it right

12 lines (11 loc) 477 B
import { IPublicConfig } from '../../config/IConfig'; import { IWebWorkerProcessProps } from './interfaces'; export declare class WebWorkerProcess { props: IWebWorkerProcessProps; bundleName: string; isRunning: boolean; constructor(props: IWebWorkerProcessProps); resolveWebWorkerBundlePath(): string; run(customConfig?: IPublicConfig): Promise<void>; } export declare function registerWebWorkerProcess(props: IWebWorkerProcessProps): WebWorkerProcess;