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 1b7ba48 commit 376a702Copy full SHA for 376a702
vscode-extension/src/main/ts/extension.ts
@@ -560,6 +560,15 @@ export function activate(context: vscode.ExtensionContext) {
560
get frameworkSDKPath(): string | null {
561
return frameworkSDKHome;
562
},
563
+
564
+ /**
565
+ * The absolute file path of the currently selected editor SDK.
566
+ * May be null or undefined if no SDK is selected or the currently
567
+ * selected SDK is invalid.
568
+ */
569
+ get editorSDKPath(): string | null {
570
+ return editorSDKHome;
571
+ },
572
};
573
}
574
0 commit comments