@stacksjs/vite-plugin-tauri
Version:
A Vite plugin to seamlessly integrate with Tauri.
8 lines (7 loc) • 353 B
TypeScript
import type { PluginOption } from 'vite';
import type { TauriConfig } from './types';
declare function getTauriConfPath(): string | null;
declare const tauriVersion: unknown;
declare function initTauri(): Promise<void>;
declare function parseTauriArgs(args: string[]): string[] | null;
export declare function tauri(config?: TauriConfig): PluginOption;