Skip to content

Commit

Permalink
fix: #3883 fix typings for max_memory_restart and add wait_ready
Browse files Browse the repository at this point in the history
  • Loading branch information
wallet77 committed Aug 29, 2018
1 parent 3496643 commit b35ea23
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,12 @@ export interface StartOptions {
* If sets and script’s memory usage goes about the configured number, pm2 restarts the script.
* Uses human-friendly suffixes: ‘K’ for kilobytes, ‘M’ for megabytes, ‘G’ for gigabytes’, etc. Eg “150M”.
*/
max_memory_restart?: number;
max_memory_restart?: number | string;
/**
* 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.
*/
wait_ready?: boolean;
/**
* (Default: 1600)
* The number of milliseconds to wait after a stop or restart command issues a SIGINT signal to kill the
Expand Down

0 comments on commit b35ea23

Please sign in to comment.