|
@@ -35,28 +35,28 @@ for all windows, webviews, opened devtools, and devtools extension background pa
|
|
|
|
|
|
### `webContents.getFocusedWebContents()`
|
|
|
|
|
|
-Returns `WebContents` | null - The web contents that is focused in this application, otherwise
|
|
|
+Returns `WebContents | null` - The web contents that is focused in this application, otherwise
|
|
|
returns `null`.
|
|
|
|
|
|
### `webContents.fromId(id)`
|
|
|
|
|
|
* `id` Integer
|
|
|
|
|
|
-Returns `WebContents` | undefined - A WebContents instance with the given ID, or
|
|
|
+Returns `WebContents | undefined` - A WebContents instance with the given ID, or
|
|
|
`undefined` if there is no WebContents associated with the given ID.
|
|
|
|
|
|
### `webContents.fromFrame(frame)`
|
|
|
|
|
|
* `frame` WebFrameMain
|
|
|
|
|
|
-Returns `WebContents` | undefined - A WebContents instance with the given WebFrameMain, or
|
|
|
+Returns `WebContents | undefined` - A WebContents instance with the given WebFrameMain, or
|
|
|
`undefined` if there is no WebContents associated with the given WebFrameMain.
|
|
|
|
|
|
### `webContents.fromDevToolsTargetId(targetId)`
|
|
|
|
|
|
* `targetId` string - The Chrome DevTools Protocol [TargetID](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetID) associated with the WebContents instance.
|
|
|
|
|
|
-Returns `WebContents` | undefined - A WebContents instance with the given TargetID, or
|
|
|
+Returns `WebContents | undefined` - A WebContents instance with the given TargetID, or
|
|
|
`undefined` if there is no WebContents associated with the given TargetID.
|
|
|
|
|
|
When communicating with the [Chrome DevTools Protocol](https://chromedevtools.github.io/devtools-protocol/),
|