mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
refactor: Introduce explicit-member-accessibility lint rule (#12325)
This commit is contained in:
@@ -28,17 +28,17 @@ export type TaskRunnerProcessEventMap = {
|
||||
*/
|
||||
@Service()
|
||||
export class TaskRunnerProcess extends TypedEmitter<TaskRunnerProcessEventMap> {
|
||||
public get isRunning() {
|
||||
get isRunning() {
|
||||
return this.process !== null;
|
||||
}
|
||||
|
||||
/** The process ID of the task runner process */
|
||||
public get pid() {
|
||||
get pid() {
|
||||
return this.process?.pid;
|
||||
}
|
||||
|
||||
/** Promise that resolves when the process has exited */
|
||||
public get runPromise() {
|
||||
get runPromise() {
|
||||
return this._runPromise;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user