(group?: string, ...specs: BindingSpec[])
| 159 | * @param specs - Extra binding specs |
| 160 | */ |
| 161 | export function globalInterceptor(group?: string, ...specs: BindingSpec[]) { |
| 162 | return injectable(asGlobalInterceptor(group), ...specs); |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * Interceptor function to intercept method invocations |
no test coverage detected