Huakun Shen ad83e89e52
feat: implement pixel dance animation component, page and command (#8)
* feat: implement pixel dance animation component, page and command

* feat: make entire dance page draggable

* feat: add dance transition for ui-iframe extension loading
2024-11-03 19:34:07 -05:00

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
})
}