(path: string)
| 219 | const pathModule = window.require('path') as typeof import('path'); |
| 220 | |
| 221 | const getPluginName = (path: string) => pathModule.basename(path); |
| 222 | |
| 223 | const getPluginVersion = (path: string): string | null => { |
| 224 | let version = null; |