mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-20 21:49:16 +00:00

* feat: implement pixel dance animation component, page and command * feat: make entire dance page draggable * feat: add dance transition for ui-iframe extension loading
9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
import { invoke } from "@tauri-apps/api/core"
|
|
import { generateJarvisPluginCommand } from "./common"
|
|
|
|
export function plistToJson(plistContent: string) {
|
|
return invoke<any>(generateJarvisPluginCommand("plist_to_json"), {
|
|
plistContent
|
|
})
|
|
}
|