@@ -116,7 +116,7 @@ v0.1.90
116116
117117### channel?
118118
119- > ` readonly ` ` optional ` ** channel** : [ ` Control ` ] ( ../interfaces/Control.md )
119+ > ` readonly ` ` optional ` ** channel? ** : [ ` Control ` ] ( ../interfaces/Control.md )
120120
121121The ` subprocess.channel ` property is a reference to the child's IPC channel. If
122122no IPC channel exists, this property is ` undefined ` .
@@ -188,7 +188,7 @@ v0.5.10
188188
189189### pid?
190190
191- > ` readonly ` ` optional ` ** pid** : ` number `
191+ > ` readonly ` ` optional ` ** pid? ** : ` number `
192192
193193Returns the process identifier (PID) of the child process. If the child process
194194fails to spawn due to errors, then the value is ` undefined ` and ` error ` is
@@ -328,7 +328,7 @@ setTimeout(() => {
328328
329329##### signal?
330330
331- ` number ` | ` Signals `
331+ ` number ` \ | ` Signals `
332332
333333#### Returns
334334
@@ -1025,7 +1025,7 @@ Alias for `emitter.on(eventName, listener)`.
10251025
10261026###### eventName
10271027
1028- ` string ` | ` symbol `
1028+ ` string ` \ | ` symbol `
10291029
10301030###### listener
10311031
@@ -1165,7 +1165,7 @@ myEmitter.emit('event', 1, 2, 3, 4, 5);
11651165
11661166###### eventName
11671167
1168- ` string ` | ` symbol `
1168+ ` string ` \ | ` symbol `
11691169
11701170###### args
11711171
@@ -1239,9 +1239,9 @@ in the list of the listeners of the event.
12391239
12401240###### eventName
12411241
1242- The name of the event being listened for
1242+ ` string ` \| ` symbol `
12431243
1244- ` string ` | ` symbol `
1244+ The name of the event being listened for
12451245
12461246###### listener?
12471247
@@ -1321,7 +1321,7 @@ console.log(util.inspect(server.listeners('connection')));
13211321
13221322###### eventName
13231323
1324- ` string ` | ` symbol `
1324+ ` string ` \ | ` symbol `
13251325
13261326##### Returns
13271327
@@ -1383,7 +1383,7 @@ Alias for `emitter.removeListener()`.
13831383
13841384###### eventName
13851385
1386- ` string ` | ` symbol `
1386+ ` string ` \ | ` symbol `
13871387
13881388###### listener
13891389
@@ -1507,9 +1507,9 @@ myEE.emit('foo');
15071507
15081508###### eventName
15091509
1510- The name of the event.
1510+ ` string ` \| ` symbol `
15111511
1512- ` string ` | ` symbol `
1512+ The name of the event.
15131513
15141514###### listener
15151515
@@ -1629,9 +1629,9 @@ myEE.emit('foo');
16291629
16301630###### eventName
16311631
1632- The name of the event.
1632+ ` string ` \| ` symbol `
16331633
1634- ` string ` | ` symbol `
1634+ The name of the event.
16351635
16361636###### listener
16371637
@@ -1727,9 +1727,9 @@ Returns a reference to the `EventEmitter`, so that calls can be chained.
17271727
17281728###### eventName
17291729
1730- The name of the event.
1730+ ` string ` \| ` symbol `
17311731
1732- ` string ` | ` symbol `
1732+ The name of the event.
17331733
17341734###### listener
17351735
@@ -1821,9 +1821,9 @@ Returns a reference to the `EventEmitter`, so that calls can be chained.
18211821
18221822###### eventName
18231823
1824- The name of the event.
1824+ ` string ` \| ` symbol `
18251825
1826- ` string ` | ` symbol `
1826+ The name of the event.
18271827
18281828###### listener
18291829
@@ -1939,7 +1939,7 @@ emitter.emit('log');
19391939
19401940###### eventName
19411941
1942- ` string ` | ` symbol `
1942+ ` string ` \ | ` symbol `
19431943
19441944##### Returns
19451945
@@ -2009,7 +2009,7 @@ Returns a reference to the `EventEmitter`, so that calls can be chained.
20092009
20102010###### eventName?
20112011
2012- ` string ` | ` symbol `
2012+ ` string ` \ | ` symbol `
20132013
20142014##### Returns
20152015
@@ -2235,7 +2235,7 @@ Returns a reference to the `EventEmitter`, so that calls can be chained.
22352235
22362236###### eventName
22372237
2238- ` string ` | ` symbol `
2238+ ` string ` \ | ` symbol `
22392239
22402240###### listener
22412241
@@ -2381,7 +2381,7 @@ class MyClass extends EventEmitter {
23812381
23822382##### event
23832383
2384- ` string ` | ` symbol `
2384+ ` string ` \ | ` symbol `
23852385
23862386##### args
23872387
0 commit comments