File tree 2 files changed +6
-6
lines changed
examples/post-start-secret-delivery
test/fixtures/post_start_hook
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ const fs = require('fs').promises;
5
5
* This is a post-start hook that will be called after an app started.
6
6
* @param {object } info
7
7
* @param {string } info.pid The apps PID
8
- * @param {object } info.stdin The apps STDIN stream
9
- * @param {object } info.stdout The apps STDOUT stream
10
- * @param {object } info.stderr The apps STDERR stream
8
+ * @param {Stream } info.stdin The apps STDIN stream
9
+ * @param {Stream } info.stdout The apps STDOUT stream
10
+ * @param {Stream } info.stderr The apps STDERR stream
11
11
* @param {object } pm2_env The apps environment variables
12
12
* @returns {Promise<void> }
13
13
*/
Original file line number Diff line number Diff line change 4
4
* This is a post-start hook that will be called after an app started.
5
5
* @param {object } info
6
6
* @param {string } info.pid The apps PID
7
- * @param {object } info.stdin The apps STDIN stream
8
- * @param {object } info.stdout The apps STDOUT stream
9
- * @param {object } info.stderr The apps STDERR stream
7
+ * @param {Stream } info.stdin The apps STDIN stream
8
+ * @param {Stream } info.stdout The apps STDOUT stream
9
+ * @param {Stream } info.stderr The apps STDERR stream
10
10
* @param {object } pm2_env The apps environment variables
11
11
* @returns {void }
12
12
*/
You can’t perform that action at this time.
0 commit comments