(
options?: CreateObservableOptions
)
| 89 | } |
| 90 | |
| 91 | export function getAnnotationFromOptions( |
| 92 | options?: CreateObservableOptions |
| 93 | ): Annotation | undefined { |
| 94 | return options ? options.defaultDecorator ?? createAutoAnnotation(options) : undefined |
| 95 | } |
| 96 | |
| 97 | export function getEnhancerFromAnnotation(annotation?: Annotation): IEnhancer<any> { |
| 98 | return !annotation ? deepEnhancer : annotation.options_?.enhancer ?? deepEnhancer |
no test coverage detected
searching dependent graphs…