2020-03-20 13:28:31 -07:00
|
|
|
'use strict';
|
2018-09-23 00:28:50 +12:00
|
|
|
|
2020-03-20 13:28:31 -07:00
|
|
|
const { EventEmitter } = require('events');
|
|
|
|
const { deprecate } = require('electron');
|
|
|
|
const { Tray } = process.electronBinding('tray');
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2020-03-20 13:28:31 -07:00
|
|
|
Object.setPrototypeOf(Tray.prototype, EventEmitter.prototype);
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2020-03-20 13:28:31 -07:00
|
|
|
module.exports = Tray;
|