enable execute to run sync and async

This commit is contained in:
thewahome 2024-08-15 13:21:01 +03:00
Родитель 90b8381e78
Коммит acbb73f807
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -28,5 +28,5 @@ export class CloseDescriptionCommand extends Command {
this._openApiTreeProvider.closeDescription();
await updateTreeViewIcons(treeViewId, false);
}
}
}
}

Просмотреть файл

@ -1,5 +1,5 @@
export abstract class Command {
public abstract toString():string;
public abstract toString(): string;
abstract execute(args: unknown):void;
abstract execute(args: unknown): Promise<void> | void;
}