-
Notifications
You must be signed in to change notification settings - Fork 73
WindowControls
github-actions[bot] edited this page Apr 23, 2024
·
2 revisions
Controls to the whole window. Use at your own risk.
import { TitleBar } from 'vscode-extension-tester';
...
const controls = new TitleBar().getWindowControls();
// minimize
await controls.minimize();
// maximize
await controls.maximize();
// restore
await controls.restore();
// close... if you dare
await controls.close();