import { invoke } from "@tauri-apps/api/core"
export interface DownloadOptions {
serverUrl: string
}
export interface DownloadResponse {
success: boolean
bundleName: string
version: string
export interface WindowOptions {
title?: string
width?: number
height?: number
resizable?: boolean
export interface LoadOptions {
inline?: boolean
window?: WindowOptions
export interface LoadResponse {
windowLabel: string
export interface CloseOptions {
export interface CloseResponse {
export interface RemoveOptions {
export interface RemoveResponse {
export async function download(
options: DownloadOptions
): Promise<DownloadResponse> {
return await invoke<DownloadResponse>("plugin:appload|download", { options })
export async function load(options: LoadOptions): Promise<LoadResponse> {
return await invoke<LoadResponse>("plugin:appload|load", { options })
export async function close(options: CloseOptions): Promise<CloseResponse> {
return await invoke<CloseResponse>("plugin:appload|close", { options })
export async function remove(options: RemoveOptions): Promise<RemoveResponse> {
return await invoke<RemoveResponse>("plugin:appload|remove", { options })
export async function clear(): Promise<void> {
return await invoke("plugin:appload|clear")