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