Debug: Reload UI command

This commit is contained in:
Zef Hemel
2023-07-26 11:22:10 +02:00
parent cf80b94b19
commit 5481e49393
4 changed files with 16 additions and 0 deletions
+4
View File
@@ -42,6 +42,10 @@ export function reloadPage(): Promise<void> {
return syscall("editor.reloadPage");
}
export function reloadUI(): Promise<void> {
return syscall("editor.reloadUI");
}
export function openUrl(url: string, existingWindow = false): Promise<void> {
return syscall("editor.openUrl", url, existingWindow);
}