Skip to content

Commit

Permalink
Add missing start options types
Browse files Browse the repository at this point in the history
  • Loading branch information
Connormiha committed Dec 7, 2021
1 parent b902551 commit d77ea05
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions types/index.d.ts
Expand Up @@ -305,6 +305,10 @@ interface Pm2Env {
}

export interface StartOptions {
/**
* Enable or disable auto restart after process failure (default: true).
*/
autorestart?: boolean;
/**
* An arbitrary name that can be used to interact with (e.g. restart) the process
* later in other commands. Defaults to the script name without its extension
Expand Down Expand Up @@ -362,6 +366,14 @@ export interface StartOptions {
* Uses human-friendly suffixes: ‘K’ for kilobytes, ‘M’ for megabytes, ‘G’ for gigabytes’, etc. Eg “150M”.
*/
max_memory_restart?: number | string;
/**
* Arguments to pass to the interpreter
*/
node_args?: string | string[];
/**
* Prefix logs with time
*/
time?: boolean;
/**
* This will make PM2 listen for that event. In your application you will need to add process.send('ready');
* when you want your application to be considered as ready.
Expand Down

0 comments on commit d77ea05

Please sign in to comment.