@keadex/mina-live
Version:
Web porting of the Keadex Mina application.
16 lines (15 loc) • 572 B
TypeScript
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;
};
__TAURI_EVENT_PLUGIN_INTERNALS__: {
unregisterListener: (event: string, eventId: number) => void;
};
}
}
export declare function getCurrentWebviewWindow(): Partial<WebviewWindow>;