659e79fc08
* refactor: prevent consistent early exception * Use _linkedBinding where possible * Remove dead electronBinding
7 lines
224 B
TypeScript
7 lines
224 B
TypeScript
import { View } from 'electron';
|
|
|
|
const { WebContentsView } = process._linkedBinding('electron_browser_web_contents_view');
|
|
|
|
Object.setPrototypeOf(WebContentsView.prototype, View.prototype);
|
|
|
|
export default WebContentsView;
|