UNPKG

container-ioc

Version:

Dependency Injection and Inversion of Control (IoC) container

12 lines (11 loc) 278 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class AnnotatorProvider { static set(annotator) { this.annotator = annotator; } static get() { return this.annotator; } } exports.AnnotatorProvider = AnnotatorProvider;