(pluginName: string)
| 41 | }; |
| 42 | |
| 43 | const getPluginHeader = (pluginName: string): PluginHeader | undefined => |
| 44 | cap.PluginHeaders?.find((h) => h.name === pluginName); |
| 45 | |
| 46 | const handleError = (err: Error) => win.console.error(err); |
| 47 |
no outgoing calls
no test coverage detected