This commit is contained in:
2026-06-30 10:39:29 +07:00
parent aaafa6ada9
commit d9c8e3930b
28 changed files with 3040 additions and 167 deletions

View File

@@ -6,6 +6,22 @@ export function CheckLoginStatus() {
return window['go']['main']['App']['CheckLoginStatus']();
}
export function ClearChatUnread() {
return window['go']['main']['App']['ClearChatUnread']();
}
export function GetChatConversations() {
return window['go']['main']['App']['GetChatConversations']();
}
export function GetChatMessages(arg1) {
return window['go']['main']['App']['GetChatMessages'](arg1);
}
export function GetChatUnread() {
return window['go']['main']['App']['GetChatUnread']();
}
export function GetStats() {
return window['go']['main']['App']['GetStats']();
}
@@ -22,6 +38,10 @@ export function NavigateToLogin() {
return window['go']['main']['App']['NavigateToLogin']();
}
export function SendChatMessage(arg1) {
return window['go']['main']['App']['SendChatMessage'](arg1);
}
export function SendWebcamFrame(arg1) {
return window['go']['main']['App']['SendWebcamFrame'](arg1);
}