82af000a37
* chore: cleanup eslint suppressions * address feedback * revert script/lib/azput.js * revert spec/fixtures/apps/remote-control/main.js * address feedback * revert typings/internal-ambient.d.ts
7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
const { WebContentsView, app } = require('electron');
|
|
app.whenReady().then(function () {
|
|
// eslint-disable-next-line no-new
|
|
new WebContentsView({});
|
|
|
|
app.quit();
|
|
});
|