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 38172ea commit a10b363Copy full SHA for a10b363
src/commands/newProject.mts
@@ -1,4 +1,4 @@
1
-import { Command } from "./command.mjs";
+import { CommandWithArgs } from "./command.mjs";
2
import Logger from "../logger.mjs";
3
import { window, type Uri } from "vscode";
4
import { NewProjectPanel } from "../webview/newProjectPanel.mjs";
@@ -15,7 +15,7 @@ export enum ProjectLang {
15
micropython = 2,
16
}
17
18
-export default class NewProjectCommand extends Command {
+export default class NewProjectCommand extends CommandWithArgs {
19
private readonly _logger: Logger = new Logger("NewProjectCommand");
20
private readonly _extensionUri: Uri;
21
private static readonly micropythonOption = "MicroPython";
0 commit comments