| 55 | * @publicApi |
| 56 | */ |
| 57 | export interface Service { |
| 58 | /** |
| 59 | * Determines whether the service should be provided automatically or by the user. |
| 60 | * Defaults to `true`. |
| 61 | */ |
| 62 | autoProvided?: boolean; |
| 63 | |
| 64 | /** |
| 65 | * A function to invoke to create a value for this service. |
| 66 | */ |
| 67 | factory?: () => unknown; |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Service decorator and metadata. |
no outgoing calls
no test coverage detected
searching dependent graphs…