secure-scuttlebot classic
1function Menu () {}
2
3Menu.prototype.append = function () {}
4Menu.prototype.popup = function () {}
5
6function MenuItem () {}
7
8module.exports = {
9 remote: {
10 Menu: Menu,
11 MenuItem: MenuItem,
12 getCurrentWindow: function () {
13 return {
14 inspectElement: function () {}
15 }
16 }
17 }
18}
19