21 lines
478 B
TypeScript
21 lines
478 B
TypeScript
namespace native {
|
|
const remote = require('electron').remote;
|
|
export async function client_version() : Promise<string> {
|
|
const version = remote.getGlobal("app_version_client");
|
|
return version || "?.?.?";
|
|
}
|
|
}
|
|
|
|
window["native"] = native;
|
|
|
|
namespace forum {
|
|
export interface UserData {
|
|
session_id: string;
|
|
username: string;
|
|
|
|
application_data: string;
|
|
application_data_sign: string;
|
|
}
|
|
}
|
|
|
|
//window["forum"] = forum;
|