UNPKG

ngx-testing-tools

Version:
6 lines (5 loc) 282 B
import { Type } from '@angular/core'; import { Nullable } from '../shared.models'; type MetadataName = 'Component' | 'Directive' | 'Injectable' | 'NgModule' | 'Pipe'; export declare function getAnnotation<T, A>(AnyCtor: Type<T>, metadataName: MetadataName): Nullable<A>; export {};