(id: string)
| 56 | } |
| 57 | |
| 58 | get(id: string): PluginRecord | undefined { |
| 59 | return this.records.get(normalizePluginId(id)); |
| 60 | } |
| 61 | |
| 62 | async install(source: string): Promise<PluginRecord> { |
| 63 | const resolved = resolveInstallSource(source); |
no test coverage detected