UNPKG

container-ioc

Version:

Dependency Injection and Inversion of Control (IoC) container

7 lines (6 loc) 245 B
import { IMetadataAnnotator } from './metadata-annotator.interface'; export declare class AnnotatorProvider { static annotator: IMetadataAnnotator; static set(annotator: IMetadataAnnotator): void; static get(): IMetadataAnnotator; }