st-bundle
Version:
CLI for watching and bundling SpringType projects.
12 lines (11 loc) • 388 B
TypeScript
import { IBundleWriteResponse } from '../bundle/Bundle';
import { Context } from '../core/Context';
export declare class ElectronLauncher {
ctx: Context;
response: Array<IBundleWriteResponse>;
electronPath: string;
private node;
constructor(ctx: Context, response: Array<IBundleWriteResponse>, electronPath: string);
kill(): void;
handleMainProcess(): void;
}