chore: update to tauri alpha.16, api alpha.9 (#673)

Co-authored-by: Amr Bashir <amr.bashir2015@gmail.com>
This commit is contained in:
Lucas Fernandes Nogueira
2023-10-20 13:50:18 -03:00
committed by GitHub
co-authored by Amr Bashir
parent b7c5407cac
commit 5c137365c6
132 changed files with 1569 additions and 1692 deletions
+2 -6
View File
@@ -4,11 +4,7 @@
import { listen, UnlistenFn } from "@tauri-apps/api/event";
declare global {
interface Window {
__TAURI_INVOKE__: <T>(cmd: string, args?: unknown) => Promise<T>;
}
}
import { invoke } from "@tauri-apps/api/primitives";
export type LogOptions = {
file?: string;
@@ -67,7 +63,7 @@ async function log(
location = "webview::unknown";
}
await window.__TAURI_INVOKE__("plugin:log|log", {
await invoke("plugin:log|log", {
level,
message,
location,