ngx-childprocess
Version:
Access Child Process API from Electron through Angular Service
26 lines (25 loc) • 1.03 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { ChildProcessService } from './childProcessService';
import { Injectable } from '@angular/core';
var ChildProcessServiceRef = (function (_super) {
__extends(ChildProcessServiceRef, _super);
function ChildProcessServiceRef() {
return _super.call(this) || this;
}
return ChildProcessServiceRef;
}(ChildProcessService));
export { ChildProcessServiceRef };
ChildProcessServiceRef.decorators = [
{ type: Injectable },
];
/** @nocollapse */
ChildProcessServiceRef.ctorParameters = function () { return []; };