File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ export async function sendToFrontendWrapped(message: MessageType) {
76
76
// TODO: This returning of status code shouldn't be necessary after refactor
77
77
if ( ! messageHandler . panel ) {
78
78
console . error ( "ERROR: panel is not set" ) ;
79
- return ;
79
+ return false ;
80
80
}
81
81
sendToFrontend ( messageHandler . panel , message ) ;
82
82
}
Original file line number Diff line number Diff line change @@ -8,6 +8,14 @@ export const isVscWorkspaceLocation = (s: any) =>
8
8
VscWorkspaceLocationArray . includes ( s ) ;
9
9
export type VscWorkspaceLocation = "assessment" | "playground" ;
10
10
11
+ export type VscAssessmentOverview = {
12
+ type : string ;
13
+ closeAt : string ;
14
+ id : number ;
15
+ isPublished ?: boolean ;
16
+ title : string ;
17
+ } ;
18
+
11
19
// ================================================================================
12
20
// Message type definitions
13
21
// ================================================================================
You can’t perform that action at this time.
0 commit comments