import { invoke } from "@tauri-apps/api/tauri"; export async function restartSidecar() { return invoke("restart_sidebar"); } export interface ClashInfo { status: string; controller?: { server?: string; secret?: string }; message?: string; } export async function getClashInfo() { return invoke("get_clash_info"); } export async function importProfile(url: string) { return invoke("import_profile", { url }); } export interface ProfileItem { name?: string; file?: string; mode?: string; url?: string; selected?: { name?: string; now?: string }[]; extra?: { upload: number; download: number; total: number; expire: number; }; } export interface ProfilesConfig { current?: number; items?: ProfileItem[]; } export async function getProfiles() { return invoke("get_profiles"); } export async function setProfiles(current: number, profile: ProfileItem) { return invoke("set_profiles", { current, profile }); } export async function putProfiles(current: number) { return invoke("put_profiles", { current }); }