mirror of
https://github.com/electron/electron.git
synced 2026-01-10 16:08:06 -05:00
7 lines
174 B
JavaScript
7 lines
174 B
JavaScript
const { EventEmitter } = require('events')
|
|
const { Tray } = process.atomBinding('tray')
|
|
|
|
Object.setPrototypeOf(Tray.prototype, EventEmitter.prototype)
|
|
|
|
module.exports = Tray
|