feat(window): add plugin (#352)

This commit is contained in:
Lucas Fernandes Nogueira
2023-05-12 03:58:20 -07:00
committed by GitHub
parent a95fb473a2
commit bb26f7d710
27 changed files with 2865 additions and 169 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import { invoke } from "@tauri-apps/api/tauri";
import { WindowLabel, getCurrent } from "@tauri-apps/api/window";
import { WindowLabel, getCurrent } from "tauri-plugin-window-api";
export enum StateFlags {
SIZE = 1 << 0,
+2 -1
View File
@@ -28,6 +28,7 @@
"tslib": "^2.5.0"
},
"dependencies": {
"@tauri-apps/api": "^1.2.0"
"@tauri-apps/api": "^1.2.0",
"tauri-plugin-window-api": "0.0.0"
}
}