* Get a source plugin by type
(type: SourceType)
| 66 | * Get a source plugin by type |
| 67 | */ |
| 68 | getSource<T extends SourceData>(type: SourceType): SourcePlugin<T> | undefined { |
| 69 | return this.sources.get(type) as SourcePlugin<T> | undefined |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Get all registered source plugins |
no test coverage detected