/** * @export * @class Process */ export declare class Process { /** * @private * @type {Application} * @memberof ComponentFactory */ private readonly app; /** * @private * @type {ProcessManager} * @memberof Command */ private readonly processManager; /** * @private * @type {string} * @memberof Process */ private processName; /** * @param {string} token * @param {string} suffix * @memberof Process */ initialize(token: string, suffix: string): void; /** * @param {boolean} daemon * @memberof Process */ stop(daemon: boolean): void; /** * @memberof Process */ restart(): void; /** * @memberof Process */ status(): void; /** * @param {boolean} showErrors * @param {number} lines * @returns {Promise} * @memberof Process */ log(showErrors: boolean, lines: number): Promise; } //# sourceMappingURL=process.d.ts.map