We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c9ba65 commit 706c654Copy full SHA for 706c654
src/utils/messages.ts
@@ -3,10 +3,10 @@
3
// Ideally it is split into multiple files, but for ease of copying, it is kept as one file.
4
5
/** A subset of the WorkspaceLocation type found in source-academy/frontend */
6
-const VscWorkspaceLocationArray = ["assessment", "playground"];
+const VscWorkspaceLocationArray = ["assessment", "playground", "sicp"];
7
export const isVscWorkspaceLocation = (s: any) =>
8
VscWorkspaceLocationArray.includes(s);
9
-export type VscWorkspaceLocation = "assessment" | "playground";
+export type VscWorkspaceLocation = "assessment" | "playground" | "sicp";
10
11
// ================================================================================
12
// Message type definitions
0 commit comments