import { Application } from '../index.js'; const app = new Application(); const window = app.createBrowserWindow({ transparent: true, decorations: false, }); const _webview = window.createWebview({ html: /* html */ `

Hello, transparent!

`, transparent: true, enableDevtools: true, }); app.run();