tam
This commit is contained in:
4
client/frontend/wailsjs/go/main/App.d.ts
vendored
4
client/frontend/wailsjs/go/main/App.d.ts
vendored
@@ -23,6 +23,8 @@ export function GetStats():Promise<Record<string, any>>;
|
||||
|
||||
export function GetStudentInfo():Promise<Record<string, any>>;
|
||||
|
||||
export function LoadExamViewFile(arg1:string):Promise<Record<string, any>>;
|
||||
|
||||
export function Logout():Promise<void>;
|
||||
|
||||
export function NavigateToLogin():Promise<void>;
|
||||
@@ -33,6 +35,8 @@ export function OpenExamQuiz():Promise<void>;
|
||||
|
||||
export function OpenExamResource(arg1:number):Promise<void>;
|
||||
|
||||
export function ReturnToDashboard():Promise<void>;
|
||||
|
||||
export function SendChatMessage(arg1:string):Promise<void>;
|
||||
|
||||
export function SendWebcamFrame(arg1:string):Promise<void>;
|
||||
|
||||
@@ -46,6 +46,10 @@ export function GetStudentInfo() {
|
||||
return window['go']['main']['App']['GetStudentInfo']();
|
||||
}
|
||||
|
||||
export function LoadExamViewFile(arg1) {
|
||||
return window['go']['main']['App']['LoadExamViewFile'](arg1);
|
||||
}
|
||||
|
||||
export function Logout() {
|
||||
return window['go']['main']['App']['Logout']();
|
||||
}
|
||||
@@ -66,6 +70,10 @@ export function OpenExamResource(arg1) {
|
||||
return window['go']['main']['App']['OpenExamResource'](arg1);
|
||||
}
|
||||
|
||||
export function ReturnToDashboard() {
|
||||
return window['go']['main']['App']['ReturnToDashboard']();
|
||||
}
|
||||
|
||||
export function SendChatMessage(arg1) {
|
||||
return window['go']['main']['App']['SendChatMessage'](arg1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user