MCPcopy Index your code
hub / github.com/alibaba/lowcode-engine / get

Method get

packages/shell/src/api/plugins.ts:52–59  ·  view source on GitHub ↗
(pluginName: string)

Source from the content-addressed store, hash-verified

50 }
51
52 get(pluginName: string): IPublicModelPluginInstance | null {
53 const instance = this[pluginsSymbol].get(pluginName);
54 if (instance) {
55 return new ShellPluginInstance(instance);
56 }
57
58 return null;
59 }
60
61 getAll() {
62 return this[pluginsSymbol].getAll()?.map((d) => new ShellPluginInstance(d));

Callers

nothing calls this directly

Calls 3

getMethod · 0.65
hasMethod · 0.65
toProxyMethod · 0.65

Tested by

no test coverage detected