ngx-childprocess
Version:
Access Child Process API from Electron through Angular Service
12 lines (11 loc) • 334 B
TypeScript
import { ChildProcess } from './childProcess.interface';
export declare class ChildProcessService {
private _child_process;
private readonly child_process;
/**
* determines if SPA is running in Electron
* @returns {boolean}
*/
readonly isElectronApp: boolean;
readonly childProcess: ChildProcess;
}