UNPKG

@keadex/mina-live

Version:

Web porting of the Keadex Mina application.

13 lines (12 loc) 443 B
import type { invoke, transformCallback } from '@tauri-apps/api/core'; import type { WebviewWindow } from '@tauri-apps/api/webviewWindow'; declare global { interface Window { __TAURI_IPC__: (message: any) => void; __TAURI_INTERNALS__: { invoke: typeof invoke; transformCallback: typeof transformCallback; }; } } export declare function getCurrentWebviewWindow(): Partial<WebviewWindow>;