(pluginKey: K)
| 66 | !!plugins[pluginKey] |
| 67 | |
| 68 | export let clearPlugin = <K extends keyof Plugins>(pluginKey: K): void => { |
| 69 | delete plugins[pluginKey] |
| 70 | } |
| 71 | |
| 72 | export function loadPlugin<K extends keyof Plugins>( |
| 73 | pluginKey: K, |
no outgoing calls
searching dependent graphs…