(value: SingleProvider)
| 415 | } |
| 416 | |
| 417 | export function isFactoryProvider(value: SingleProvider): value is FactoryProvider { |
| 418 | return !!(value && (value as FactoryProvider).useFactory); |
| 419 | } |
| 420 | |
| 421 | export function isTypeProvider(value: SingleProvider): value is TypeProvider { |
| 422 | return typeof value === 'function'; |
no outgoing calls
no test coverage detected
searching dependent graphs…