chore: tsify more of lib (#23721)
* chore: tsify more of lib * Update lib/browser/api/session.ts Co-authored-by: Jeremy Apthorp <jeremya@chromium.org> Co-authored-by: Jeremy Apthorp <jeremya@chromium.org>
This commit is contained in:
parent
762f7bcca2
commit
9bc5e98238
25 changed files with 66 additions and 94 deletions
15
lib/browser/api/browser-view.ts
Normal file
15
lib/browser/api/browser-view.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
import { EventEmitter } from 'events';
|
||||
|
||||
const { BrowserView } = process.electronBinding('browser_view');
|
||||
|
||||
Object.setPrototypeOf(BrowserView.prototype, EventEmitter.prototype);
|
||||
|
||||
BrowserView.fromWebContents = (webContents: Electron.WebContents) => {
|
||||
for (const view of BrowserView.getAllViews()) {
|
||||
if (view.webContents.equal(webContents)) return view;
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
export default BrowserView;
|
Loading…
Add table
Add a link
Reference in a new issue