(id: string)
| 278 | } |
| 279 | |
| 280 | info(id: string): PluginInfo | undefined { |
| 281 | const record = this.get(id); |
| 282 | return record === undefined ? undefined : recordToInfo(record); |
| 283 | } |
| 284 | |
| 285 | private async persist(): Promise<void> { |
| 286 | const installed: InstalledRecord[] = [...this.records.values()].map((record) => ({ |
nothing calls this directly
no test coverage detected