diff --git a/vscode/microsoft-kiota/src/commands/Command.ts b/vscode/microsoft-kiota/src/commands/Command.ts new file mode 100644 index 0000000000..dae90f270d --- /dev/null +++ b/vscode/microsoft-kiota/src/commands/Command.ts @@ -0,0 +1,5 @@ +export abstract class Command { + public abstract getName(): string; + + abstract execute(args: unknown): Promise | void; +} \ No newline at end of file