16 lines
418 B
TypeScript
Raw Normal View History

2021-02-20 18:55:36 +01:00
export declare type NativeClientVersionInfo = {
version: string;
os_architecture: string;
os_platform: string;
os_platform_version: string;
};
export interface NativeClientBackend {
openChangeLog(): void;
openClientUpdater(): void;
quit(): void;
showDeveloperOptions(): boolean;
openDeveloperTools(): void;
reloadWindow(): void;
getVersionInfo(): NativeClientVersionInfo;
}