Add backticks around return types
This commit is contained in:
parent
44862a131c
commit
b0d4bf81a0
2 changed files with 3 additions and 3 deletions
|
@ -764,12 +764,12 @@ This method can only be called before app is ready.
|
||||||
|
|
||||||
### `app.getAppMemoryInfo()` _Deprecated_
|
### `app.getAppMemoryInfo()` _Deprecated_
|
||||||
|
|
||||||
Returns [ProcessMetric[]](structures/process-metric.md): Array of `ProcessMetric` objects that correspond to memory and cpu usage statistics of all the processes associated with the app.
|
Returns [`ProcessMetric[]`](structures/process-metric.md): Array of `ProcessMetric` objects that correspond to memory and cpu usage statistics of all the processes associated with the app.
|
||||||
**Note:** This method is deprecated, use `app.getAppMetrics()` instead.
|
**Note:** This method is deprecated, use `app.getAppMetrics()` instead.
|
||||||
|
|
||||||
### `app.getAppMetrics()`
|
### `app.getAppMetrics()`
|
||||||
|
|
||||||
Returns [ProcessMetric[]](structures/process-metric.md): Array of `ProcessMetric` objects that correspond to memory and cpu usage statistics of all the processes associated with the app.
|
Returns [`ProcessMetric[]`](structures/process-metric.md): Array of `ProcessMetric` objects that correspond to memory and cpu usage statistics of all the processes associated with the app.
|
||||||
|
|
||||||
### `app.setBadgeCount(count)` _Linux_ _macOS_
|
### `app.setBadgeCount(count)` _Linux_ _macOS_
|
||||||
|
|
||||||
|
|
|
@ -923,7 +923,7 @@ when the JS promise is rejected.
|
||||||
|
|
||||||
Get the system printer list.
|
Get the system printer list.
|
||||||
|
|
||||||
Returns [PrinterInfo[]](structures/printer-info.md)
|
Returns [`PrinterInfo[]`](structures/printer-info.md)
|
||||||
|
|
||||||
#### `contents.print([options])`
|
#### `contents.print([options])`
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue