(options?: InjectableOptions)
| 41 | * @publicApi |
| 42 | */ |
| 43 | export function Injectable(options?: InjectableOptions): ClassDecorator { |
| 44 | return (target: object) => { |
| 45 | Reflect.defineMetadata(INJECTABLE_WATERMARK, true, target); |
| 46 | Reflect.defineMetadata(SCOPE_OPTIONS_METADATA, options, target); |
| 47 | }; |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * @publicApi |
no outgoing calls
no test coverage detected