mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 03:01:16 +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);
|
return this[pluginsSymbol].has(pluginName);
|
||||||
}
|
}
|
||||||
|
|
||||||
delete(pluginName: string) {
|
async delete(pluginName: string) {
|
||||||
this[pluginsSymbol].delete(pluginName);
|
return await this[pluginsSymbol].delete(pluginName);
|
||||||
}
|
}
|
||||||
|
|
||||||
toProxy() {
|
toProxy() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user