| 28 | * ``` |
| 29 | */ |
| 30 | export interface Provider<T> { |
| 31 | /** |
| 32 | * @returns The value to inject to dependents. |
| 33 | * This method can return a promise too, in which case the IoC framework |
| 34 | * will resolve this promise to obtain the value to inject. |
| 35 | */ |
| 36 | value(): ValueOrPromise<T>; |
| 37 | } |
no outgoing calls
no test coverage detected