TeaSpeak-Client/imports/shared-app/backend/NativeClient.d.ts

16 lines
418 B
TypeScript
Raw Normal View History

2021-02-20 12:55:36 -05: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;
}