electron/spec/fixtures/module/preload-webview.js

6 lines
121 B
JavaScript
Raw Normal View History

const {ipcRenderer} = require('electron')
window.onload = function () {
ipcRenderer.send('webview', typeof WebView)
}