chore: generate

This commit is contained in:
opencode-agent[bot]
2026-02-02 10:53:46 +00:00
parent 9564c1d6be
commit 1cabeb00d0

View File

@@ -1,6 +1,6 @@
// This file has been generated by Tauri Specta. Do not edit this file manually.
import { invoke as __TAURI_INVOKE, Channel } from '@tauri-apps/api/core';
import { invoke as __TAURI_INVOKE, Channel } from "@tauri-apps/api/core"
/** Commands */
export const commands = {
@@ -10,11 +10,10 @@ export const commands = {
getDefaultServerUrl: () => __TAURI_INVOKE<string | null>("get_default_server_url"),
setDefaultServerUrl: (url: string | null) => __TAURI_INVOKE<null>("set_default_server_url", { url }),
parseMarkdownCommand: (markdown: string) => __TAURI_INVOKE<string>("parse_markdown_command", { markdown }),
};
}
/* Types */
export type ServerReadyData = {
url: string,
password: string | null,
};
url: string
password: string | null
}