* Get the loader type for a category * @param category - Category name * @returns The loader type string or undefined if not registered
(category: string)
| 165 | * @returns The loader type string or undefined if not registered |
| 166 | */ |
| 167 | static getLoaderType(category: string): string | undefined { |
| 168 | return this._categoryLoaderMap.get(category); |
| 169 | } |
| 170 | |
| 171 | /** |
| 172 | * Get a loader configuration by type |
no test coverage detected