(name: string, ...specs: BindingSpec[])
| 44 | * @param name - Name of the extension point |
| 45 | */ |
| 46 | export function extensionPoint(name: string, ...specs: BindingSpec[]) { |
| 47 | return injectable({tags: {[CoreTags.EXTENSION_POINT]: name}}, ...specs); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Shortcut to inject extensions for the given extension point. |
no test coverage detected