feat: Allow open devtools

This commit is contained in:
MystiPanda
2024-03-11 20:19:21 +08:00
parent fba0f362a5
commit d214c8e01b
6 changed files with 38 additions and 3 deletions

View File

@@ -213,6 +213,10 @@ export async function getPortableFlag() {
return invoke<boolean>("get_portable_flag");
}
export async function openDevTools() {
return invoke("open_devtools");
}
export async function exitApp() {
return invoke("exit_app");
}