mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-11 18:42:56 +00:00
fix: fix proxy plugins.delete not added async
This commit is contained in:
parent
04f5416050
commit
ec4a95c9ba
@ -66,8 +66,8 @@ export class Plugins implements IPublicApiPlugins {
|
||||
return this[pluginsSymbol].has(pluginName);
|
||||
}
|
||||
|
||||
delete(pluginName: string) {
|
||||
this[pluginsSymbol].delete(pluginName);
|
||||
async delete(pluginName: string) {
|
||||
return await this[pluginsSymbol].delete(pluginName);
|
||||
}
|
||||
|
||||
toProxy() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user