2023-12-13 21:01:03 +00:00
|
|
|
import { EventEmitter } from 'events';
|
2024-10-03 03:52:01 +00:00
|
|
|
|
2020-06-23 03:32:45 +00:00
|
|
|
const { View } = process._linkedBinding('electron_browser_view');
|
2018-05-07 05:52:25 +00:00
|
|
|
|
2023-12-13 21:01:03 +00:00
|
|
|
Object.setPrototypeOf((View as any).prototype, EventEmitter.prototype);
|
|
|
|
|
2020-05-22 19:46:22 +00:00
|
|
|
export default View;
|